-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·70 lines (70 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·70 lines (70 loc) · 1.93 KB
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
{
"config": {
"ejs": {
"input": "./src",
"output": "./public"
},
"sass": {
"input": "./src/scss",
"output": "./public/css"
},
"js": {
"input": "./src/js",
"output": "./public/js"
}
},
"devDependencies": {
"ajv": "^5.2.2",
"ajv-keywords": "^2.1.0",
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"browser-sync-webpack-plugin": "^1.2.0",
"css-loader": "^0.28.4",
"ejs-html-loader": "^3.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"glob": "^7.1.1",
"lodash.frompairs": "^4.0.1",
"node-sass": "^4.5.0",
"postcss-loader": "^2.0.6",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6",
"stylelint-webpack-plugin": "^0.9.0",
"url-loader": "^0.5.9"
},
"private": true,
"scripts": {
"build": "webpack",
"copy": "cpx 'src/**/*.{png,jpg,gif,svg,woff,eot,ttf}' './public' --verbose --update --watch",
"clean": "rimraf ./public",
"server": "browser-sync start --config bs-config.js",
"server2": "webpack-dev-server",
"start": "webpack --watch & npm run server & npm run copy"
},
"dependencies": {
"browser-sync": "^2.18.12",
"cpx": "^1.5.0",
"ejs": "^2.5.7",
"eslint": "^4.2.0",
"file-loader": "^0.11.2",
"nodemon": "^1.11.0",
"reset-css": "^2.2.1",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.7.1"
}
}