-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.19 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "the-gear-report",
"version": "1.0.0",
"description": "A web app that allows users to report faulty gear around NZ rock climbs",
"main": "server/index.js",
"repository": "https://github.com/kahu-2019/the-gear-report",
"author": "Richard Graham",
"license": "MIT",
"engines": {
"node": "11.6.0",
"npm": "6.5.0",
"yarn": "1.13.0"
},
"scripts": {
"dev": "nodemon server --watch & webpack --watch",
"server": "node server",
"start": "node server",
"test": "jest --watchAll",
"postinstall": "webpack && knex migrate:latest",
"win": "webpack --watch"
},
"dependencies": {
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"bcrypt": "^3.0.4",
"body-parser": "^1.18.3",
"create-react-app": "^2.1.5",
"cross-env": "^5.2.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"google-maps-react": "^2.0.2",
"jsonwebtoken": "^8.5.0",
"jwt-decode": "^2.2.0",
"knex": "^0.16.3",
"libsodium-wrappers": "^0.7.4",
"material-table": "^1.19.0",
"nodemon": "^1.18.10",
"path": "^0.12.7",
"pg": "^7.8.1",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-facebook-login": "^4.1.1",
"react-redux": "^6.0.1",
"react-router-dom": "^4.3.1",
"react-social-login": "^3.4.4",
"react-social-login-buttons": "^2.3.0",
"redux": "^4.0.1",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.3.0",
"sqlite3": "^4.0.6",
"superagent": "^4.1.0",
"supertest": "^3.4.2",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.0"
},
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-class-properties",
"transform-object-rest-spread"
]
},
"jest": {
"setupFiles": [
"./tests/setup.js"
]
},
"devDependencies": {
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"jest": "^23.6.0"
}
}