-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
{
"name": "game-site",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build-css": "node-sass src/sass/main.scss dist/styles.css .|postcss dist/styles.css -u autoprefixer -r",
"build-html": "node tools/build-html.js",
"build-js": "webpack",
"copy-public": "copyfiles public/* dist/",
"build": "npm run build-css && npm run build-html && npm run build-js && npm run copy-public",
"start": "node server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer": "^9.1.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"copyfiles": "^2.0.0",
"express": "^4.16.2",
"markdown-it": "^8.4.2",
"md5-file": "^4.0.0",
"node-sass": "^4.9.4",
"postcss": "^7.0.2",
"postcss-cli": "^6.0.0",
"scss": "^0.2.4",
"webpack": "^4.23.1"
},
"devDependencies": {
"webpack-cli": "^3.1.2"
}
}