-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 2.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "9tac",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"bootstrap": "^4.0.0-alpha.2",
"font-awesome": "^4.6.1",
"jquery": "^2.2.3",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"socket.io": "^1.4.5"
},
"scripts": {
"build:css": "./node_modules/.bin/node-sass --output-style compressed app/style/bootstrap.scss build/public/css/game.css && ./node_modules/.bin/postcss --use autoprefixer build/public/css/game.css --output build/public/css/game.min.css",
"build:css:watch": "./node_modules/.bin/onchange app/style/**/* -- npm run build:css",
"build:js": "./node_modules/.bin/webpack -d",
"build:js:watch": "./node_modules/.bin/webpack -d --watch",
"build:js:prod": "./node_modules/.bin/webpack --progress -p",
"build:fonts": "mkdir build/public/fonts && cp -R node_modules/font-awesome/fonts/* build/public/fonts",
"build:views": "cp app/views/* build/public",
"build:views:watch": "./node_modules/.bin/onchange app/views/**/* -- npm run build:views",
"build": "rm -rf build/ && npm run build:js:prod && npm run build:css && npm run build:fonts && npm run build:views",
"build:watch": "npm run build:css:watch && npm run build:js:watch && npm run build:views:watch"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"copy-to-clipboard": "^3.0.0",
"eslint": "^2.9.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^5.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"node-sass": "^3.7.0",
"onchange": "^2.2.0",
"postcss-cli": "^2.5.2",
"react-router": "^2.4.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dazorni/9tac.git"
},
"author": "dazorni",
"bugs": {
"url": "https://github.com/dazorni/9tac/issues"
},
"homepage": "https://github.com/dazorni/9tac#readme"
}