-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cd server && node index.js",
"heroku-postbuild": "cd client && npm install && npm run build",
"start:watch": "cd server && nodemon ./index.js",
"start:dev": "concurrently \"npm run start:watch\" \"cd client && npm run start\"",
"coverage": "cd client && npm test -- --coverage --watchAll=false && codecov",
"test": "NODE_ENV=test cd client && npm run test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"airtable": "^0.8.1",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"coverage": "^0.4.1",
"dotenv": "^8.2.0",
"eslint-plugin-html": "^6.0.0",
"express": "^4.17.1",
"http-proxy-middleware": "^0.20.0",
"querystring": "^0.2.0",
"react-router-dom": "^5.1.2",
"url": "^0.11.0"
},
"homepage": "https://github.com/fac18/signpost",
"devDependencies": {
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-react": "^7.18.0",
"prettier": "1.19.1"
}
}