-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
97 lines (97 loc) · 2.84 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "starter-kit",
"version": "2.4.0",
"title": "Starter Kit",
"description": "A simple and powerful Starter Kit made with Webpack, Gulp 4, Pug and SASS",
"homepage": "https://starter-kit.nandomoreira.dev",
"main": "gulpfile.babel.js",
"scripts": {
"start": "NODE_ENV=production gulp server",
"prod": "npm run lint && npm run build",
"build": "NODE_ENV=production gulp build",
"dev": "NODE_ENV=development gulp",
"deploy": "npm run prod && npm run deploy:netlify",
"deploy:netlify": "netlify deploy --prod --message \"Deploy with netlify command line\"",
"eslint": "eslint .",
"eslint:fix": "npm run eslint --fix",
"stylelint": "stylelint \"./source/styles/**/*.scss\"",
"stylelint:fix": "npm run stylelint --fix",
"lint": "npm run eslint && npm run stylelint",
"pre-commit": "npm run lint",
"test": "echo 'no has test! lol'"
},
"repository": {
"type": "git",
"url": "https://github.com/onedevstudio/starter-kit"
},
"keywords": [
"starter-kit",
"starter",
"kit",
"babel",
"es6",
"stylus",
"gulp",
"gulpjs"
],
"author": {
"name": "Fernando Moreira",
"email": "[email protected]",
"site": "https://nandomoreira.dev",
"twitter": "oseunando"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/onedevstudio/starter-kit/issues"
},
"engines": {
"node": ">=10"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"dotenv": "^8.1.0",
"eslint": "^6.2.2",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"favicons": "^5.4.1",
"file-loader": "^4.2.0",
"gulp": "^4.0.2",
"gulp-size": "^3.0.0",
"gulp-util": "^3.0.8",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.4",
"lost": "^8.3.1",
"mini-css-extract-plugin": "^0.8.0",
"netlify-cli": "^2.12.0",
"node-sass": "^4.12.0",
"offline-plugin": "^5.0.7",
"postcss-font-magician": "^2.2.2",
"postcss-loader": "^3.0.0",
"postcss-modules": "^1.4.1",
"pug": "^2.0.4",
"pug-loader": "^2.4.0",
"rucksack-css": "^1.0.2",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-sass-guidelines": "^6.0.0",
"stylelint-config-standard": "^18.3.0",
"webpack": "^4.39.2",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0"
}
}