-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.16 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
{
"name": "Fireboard",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"server": "node server.js",
"client": "node scripts/start-client.js",
"start": "npm run seed && npm run server",
"dev": "concurrently \"nodemon server.js\" \"npm run client\"",
"build": "node scripts/build.js",
"seed": "node scripts/seedStations.js && node scripts/seedStaff.js",
"test": "echo \"Error: no test specified\" && exit 1",
"installDeps": "yarn && cd client && yarn"
},
"author": "Daniel Lucio, Forrest Eastland, James Doss",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.5.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"antd": "^3.1.3",
"axios": "^0.17.1",
"body-parser": "^1.17.2",
"cors": "^2.8.4",
"express": "^4.15.4",
"express-graphql": "^0.6.11",
"express-jwt": "^5.3.0",
"graphql": "^0.12.3",
"graphql-tag": "^2.6.1",
"jwks-rsa": "^1.2.1",
"jwt-decode": "^2.2.0",
"mongoose": "^4.11.7",
"react-apollo": "^2.0.4",
"react-router-dom": "^4.2.2",
"semantic-ui-css": "^2.2.12",
"semantic-ui-react": "^0.77.2",
"tachyons": "^4.9.1"
}
}