-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 876 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 876 Bytes
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
{
"name": "data-api",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node -r dotenv/config ./bin/www",
"test": "mocha -r dotenv/config --recursive",
"dev": "watch 'node -r dotenv/config ./bin/www'",
"test:integration": "mocha -r dotenv/config --recursive \"./test/integration/*.js\"",
"test:unit": "mocha -r dotenv/config --recursive \"./test/unit/*.js\""
},
"dependencies": {
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-http-proxy": "^1.6.2",
"graphql": "^15.3.0",
"graphql-request": "^5.1.0",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"node-fetch": "^2.6.1",
"xlsx": "^0.16.8"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.1.3",
"prettier": "2.1.1",
"supertest": "^4.0.2"
}
}