-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "thehuntapp2",
"version": "1.0.0",
"description": "App to ease scoring of posts in #TheHunt4.",
"main": "server.js",
"scripts": {
"test": "test: echo \"Error: no test specified\" && exit 1",
"start": "npm install && babel-register server",
"heroku-postbuild": "rimraf ./client/build/static && cd client && npm install --only=dev && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/annie-mathis/thehunt4scoring.git"
},
"author": "Annie Mathis",
"license": "ISC",
"bugs": {
"url": "https://github.com/annie-mathis/thehunt4scoring/issues"
},
"homepage": "https://github.com/annie-mathis/thehunt4scoring#readme",
"dependencies": {
"axios": "^0.17.1",
"rimraf": "^2.6.1",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"mongodb": "^2.2.33",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"babel-register-cli": "^4.0.0",
"react-bootstrap": "^0.31.5"
},
"devDependencies": {
"webpack": "^2.5.0",
"webpack-dev-server": "^2.5.0"
},
"babel": {
"presets": [
"env",
"react",
"stage-2"
]
}
}