-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
{
"name": "911vm",
"version": "0.0.1",
"description": "Volunteer Management Software",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.js",
"build": "webpack -d --watch",
"seed": "node server/utils/seed.js",
"dropDB": "node server/utils/dropDB.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codydaig/911vm.git"
},
"author": "Cody B. Daig",
"license": "MIT",
"bugs": {
"url": "https://github.com/codydaig/911vm/issues"
},
"homepage": "https://github.com/codydaig/911vm#readme",
"dependencies": {
"@material-ui/core": "^4.4.2",
"axios": "^0.19.0",
"babel-cli": "^6.6.5",
"babel-core": "6.24.1",
"babel-loader": "7.0.0",
"babel-plugin-react": "1.0.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "6.24.1",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"neo4j-driver": "^1.7.5",
"neode": "^0.2.16",
"react": "^16.0.0",
"react-datepicker": "^2.8.0",
"react-dom": "^16.0.0",
"react-router-dom": "^5.0.1",
"uuid": "^3.3.2",
"webpack": "2.6.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"html-webpack-plugin": "^3.2.0",
"morgan": "^1.9.1"
}
}