-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.77 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
{
"name": "nko2016-asteroids-on-steroids",
"version": "0.0.1",
"description": "NKO16 multiplayer 'Asteroids on Steroids' game",
"main": "index.js",
"scripts": {
"start": "node index.js",
"watch": "npm run watch-postcss & npm run watch-js & npm run watch-server",
"build": "npm run build-css && npm run build-js && npm run build-js-min",
"watch-js": "./node_modules/.bin/watchify ./src/client -o ./public/build/bundle.js -v -d",
"watch-server": "./node_modules/.bin/nodemon . -w ./src/server -e js,html",
"watch-postcss": "npm run postcss -- -w",
"postcss": "./node_modules/.bin/postcss --use postcss-import --use postcss-cssnext -o ./public/build/bundle.css ./src/client/index.css",
"cssnano": "./node_modules/.bin/cssnano < ./public/build/bundle.css > ./public/build/bundle.min.css",
"build-css": "npm run postcss && npm run cssnano",
"build-js": "NODE_ENV=production ./node_modules/.bin/browserify ./src/client -o ./public/build/bundle.js",
"build-js-min": "NODE_ENV=production ./node_modules/.bin/browserify ./src/client | ./node_modules/.bin/uglifyjs -cm > ./public/build/bundle.min.js",
"postinstall": "npm run build"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports",
"transform-object-assign"
]
}
],
["envify"]
]
},
"dependencies": {
"animate.css": "^3.5.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"compression": "^1.6.2",
"contrabass.css": "^1.0.4",
"cssnano-cli": "^1.0.5",
"envify": "^3.4.1",
"express": "^4.13.3",
"griddy.css": "^1.0.1",
"morgan": "^1.7.0",
"node-gameloop": "^0.1.0",
"node-uuid": "^1.4.7",
"nodemon": "^1.11.0",
"normalize.css": "^5.0.0",
"postcss": "^5.2.5",
"postcss-cli": "^2.6.0",
"postcss-cssnext": "^2.8.0",
"postcss-import": "^8.2.0",
"socket.io": "^1.5.1",
"socket.io-client": "^1.5.1",
"store": "^1.3.20",
"swig": "^1.4.2",
"uglify-js-harmony": "^2.6.2",
"versionify-assets": "^0.1.3",
"watchify": "^3.7.0"
},
"engines": {
"node": "6.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rumblex/nodeknockout2016-kosmetikas"
},
"keywords": [
"node",
"heroku",
"express"
],
"author": "Kosmetikas Berlin Team",
"contributors": [
"Dmitri Voronianski <dmitri.voronianski@gmail.com>",
"Phil Rukin <phil.ficus@gmail.com>"
],
"license": "MIT"
}