-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.99 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
{
"name": "voice_jeopardy",
"version": "0.0.1",
"description": "Voice Jeopardy",
"main": "index.js",
"scripts": {
"test": "check-node-version --node '>= 6.7.0' && mocha --compilers js:babel-register app/**/*.test.js app/**/*.test.jsx db/**/*.test.js server/**/*.test.js",
"test-watch": "check-node-version --node '>= 6.7.0' && mocha --compilers js:babel-register --watch app/**/*.test.js app/**/*.test.jsx db/**/*.test.js server/**/*.test.js",
"build": "check-node-version --node '>= 6.7.0' && webpack",
"build-watch": "check-node-version --node '>= 6.7.0' && webpack -w",
"start": "webpack && node server/start.js",
"seed": "node db/seed.js",
"postinstall" : "webpack --config ./webpack.config.js --progress --colors"
},
"engines" : {
"node": "6.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bculp/voice_jeopardy2.git"
},
"keywords": [
"react",
"redux",
"skeleton"
],
"author": "Brandon Culp",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bculp/voice_jeopardy2/issues"
},
"homepage": "https://github.com/Bculp/voice_jeopardy2#readme",
"dependencies": {
"axios": "^0.15.2",
"babel-preset-stage-2": "^6.18.0",
"body-parser": "^1.15.2",
"chai-enzyme": "^0.5.2",
"chalk": "^1.1.3",
"check-node-version": "^1.1.2",
"express": "^4.14.0",
"pg": "^6.1.0",
"pg-native": "^1.10.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-logger": "^2.7.0",
"redux-thunk": "^2.1.0",
"sequelize": "^3.24.6",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"babel": "^6.5.2",
"babel-core": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"chai": "^3.5.0",
"mocha": "^3.1.2",
"supertest": "^2.0.1",
"supertest-as-promised": "^4.0.1",
"volleyball": "^1.4.1",
"webpack": "^1.13.3"
}
}