-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 3.22 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
{
"name": "webpack-enterprise",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf build",
"sass-lint": "sass-lint -v -q --no-exit",
"lint:fix": "npm run lint -- --fix",
"lint:debug": "npm run lint -- --debug",
"lint:check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"lint": "eslint ./commons/scripts ./pages --color",
"webpack": "cross-env NODE_ENV=development webpack --config webpack.dev.config.js",
"dev": "npm run clean && env-cmd ./env/.dev.env webpack-dev-server --config webpack.dev.config.js --watch-content-base --progress --profile",
"serve": "npm run clean && env-cmd ./env/.serve.env webpack-dev-server --config webpack.dev.config.js --watch-content-base --progress --profile",
"build": "npm run clean && env-cmd ./env/.prod.env webpack -p --config webpack.prod.config.js",
"server:dev": "nodemon server/index.js --exec babel-node",
"server:serve": "set DEBUG=express:* & babel-node server/index.js",
"gen:stats": "webpack --profile --json > stats.json"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "7.1.6",
"babel-cli": "6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-function-bind": "6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-3": "6.24.1",
"babel-register": "6.26.0",
"body-parser": "1.18.2",
"chalk": "^2.3.0",
"cors": "2.8.4",
"cross-env": "5.1.1",
"css-loader": "^0.28.7",
"env-cmd": "7.0.0",
"eslint": "4.11.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-friendly-formatter": "3.0.0",
"eslint-import-resolver-webpack": "0.8.3",
"eslint-loader": "1.9.0",
"eslint-plugin-html": "4.0.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"express": "4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"friendly-errors-webpack-plugin": "1.6.1",
"glob": "^7.1.2",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"import-glob-loader": "1.1.0",
"node-sass": "4.7.1",
"nodemon": "1.12.1",
"npm-run-all": "^4.1.2",
"postcss-alias": "2.0.0",
"postcss-assets": "5.0.0",
"postcss-flexbugs-fixes": "3.2.0",
"postcss-inline-svg": "3.0.0",
"postcss-loader": "2.0.8",
"postcss-sorting": "3.1.0",
"postcss-use": "2.3.0",
"rimraf": "2.6.2",
"sass-lint": "1.12.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "2.9.1",
"webpack-dev-server": "2.9.4",
"webpack-merge": "4.1.1",
"webpack-module-hot-accept": "1.0.5",
"es6-promise": "4.1.1"
},
"dependencies": {
"bootstrap": "3.3.7",
"jquery": "3.2.1"
},
"sasslintConfig": ".sass-lint.yml"
}