-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (36 loc) · 1.52 KB
/
package.json
File metadata and controls
39 lines (36 loc) · 1.52 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
{
"name": "connectFour",
"version": "1.0.0",
"scripts": {
"build": "npm run build_js & npm run build_server & npm run compile_sass",
"build_js": "babel es-js/gameBoard.js es-js/offlineGame.js es-js/onlineGame.js es-js/interface.js -w -o js/connectFour.js",
"build_server": "babel es-js/gameServer.js -o js/gameServer.js && babel es-js/app.js -w -o ./app.js",
"compile_sass": "node-sass --watch --output-style compressed --include-path scss scss/main.scss css/main.css",
"build_production": "npm run build_js_once && npm run build_server_once && npm run compile_sass_once && npm run autoprefix_css",
"build_js_once": "babel es-js/gameBoard.js es-js/offlineGame.js es-js/onlineGame.js es-js/interface.js -o js/connectFour.js",
"build_server_once": "babel es-js/gameServer.js -o js/gameServer.js && babel es-js/app.js -o ./app.js",
"compile_sass_once": "node-sass --output-style compressed --include-path scss scss/main.scss css/main.css",
"autoprefix_css": "postcss --use autoprefixer css/main.css -d css/"
},
"keywords": [],
"author": "Mujavid Bukhari",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-webpack": "^6.4.1",
"express": "^4.14.0",
"node-sass": "^3.8.0",
"node-uuid": "^1.4.7",
"postcss-cli": "^2.5.2",
"socket.io": "^1.4.6"
},
"babel": {
"minified": false,
"shouldPrintComment": false,
"presets": [
"babel-preset-es2015-webpack"
]
}
}