-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.31 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.31 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
71
72
{
"name": "blackjack",
"version": "1.0.0",
"description": "Blackjack game",
"author": "iamvanja <[email protected]>",
"license": "MIT",
"dependencies": {
"normalize.css": "^5.0.0",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-dom": "^15.4.2"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"chalk": "^1.1.3",
"css-loader": "^0.27.3",
"dotenv": "^4.0.0",
"enzyme": "^2.8.0",
"es6-weak-map": "^2.0.2",
"esdoc": "^0.5.2",
"eslint": "^3.18.0",
"eslint-loader": "^1.7.0",
"eslint-plugin-react": "^6.10.3",
"file-loader": "^0.11.1",
"mocha": "^3.2.0",
"node-sass": "^4.5.1",
"postcss-loader": "^1.3.3",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^1.3.1",
"resolve-url-loader": "^2.0.2",
"sass-loader": "^6.0.3",
"shelljs": "^0.6.0",
"style-loader": "^0.16.0",
"url-loader": "^0.5.8",
"webpack": "^2.3.2",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "^2.4.2"
},
"scripts": {
"start": "./node_modules/webpack-dashboard/bin/webpack-dashboard.js webpack-dev-server",
"build": "NODE_ENV=production webpack -p --progress --profile --colors",
"test": "mocha --compilers js:babel-core/register --recursive --require ./test/test-helper.js",
"test:watch": "npm run test -- --watch",
"docs": "./node_modules/.bin/esdoc -c .esdoc.json && open ./doc/index.html",
"deploy": "npm run test && npm run build && node config/deploy"
},
"deploy": {
"src": "build/",
"dest": "~/public_html/vanja.gavric.org/playground/blackjack",
"host": "gavric.org",
"args": [
"recursive",
"delete",
"progress",
"compress",
"human-readable"
],
"exclude": [
"*.map",
"fonts/config.json",
"Thumbs.db",
".DS_Store"
]
}
}