This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.68 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
{
"name": "debate-bingo",
"version": "1.0.0",
"description": "Bingo game for presidential & vice presidential debates",
"repository": {
"type": "git",
"url": "git+https://github.com/DevProgress/debate-bingo.git"
},
"main": "docs/index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack",
"webpack-prod": "webpack -p",
"webpack-watch": "webpack -w",
"express-server": "node server",
"dev": "concurrently --kill-others \"npm run webpack-watch\" \"npm run express-server\"",
"postinstall": "npm run webpack-prod",
"clean": "node -e \"var rimraf=require('rimraf'); rimraf.sync('docs')\"",
"deploy": "webpack -p",
"start": "npm run express-server"
},
"engines": {
"node": "4.5.0"
},
"keywords": [
"debate",
"bingo"
],
"author": "Jonathan Keslin",
"license": "MIT",
"dependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.11.6",
"babel-runtime": "^6.11.6",
"express": "^4.14.0",
"react": "^15.3.0",
"react-autobind": "^1.0.6",
"react-dom": "^15.3.0",
"webpack": "^1.13.2",
"concurrently": "^2.2.0",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.24.0",
"extract-text-webpack-plugin": "^1.0.1",
"fs-extra": "^0.30.0",
"node-sass": "^3.8.0",
"rimraf": "^2.5.4",
"sass": "^0.5.0",
"sass-loader": "^4.0.0",
"es6-promise": "~3.3.1",
"react-share": "~1.10.0"
}
}