-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "backend",
"version": "1.0.0",
"description": "Sandwich Backend",
"main": "server.js",
"scripts": {
"client-install": "cd client && npm install",
"build": "cd client && npm run build",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"testAPI": "mocha -r esm --timeout 15000",
"test": "cd client && npm test a -- -u --silent",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm run client-install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"axios": "^0.21.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"mongoose": "^5.10.15",
"nodemon": "^2.0.6",
"react-notifications": "^1.7.2",
"wil-react-sticky": "^1.0.5"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^8.2.0",
"supertest": "^6.0.1"
}
}