-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.07 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": "eq-publisher-v3",
"version": "1.0.0",
"description": "A NodeJS application for changing Author-compatible schemas into Runner-compatible schemas.",
"main": "src/server.js",
"repository": "[email protected]:ONSdigital/eq-publisher-v3.git",
"author": "Eq Author, Survey Data Collection, Digital Services & Technology, Office for National Statistics",
"license": "MIT",
"private": false,
"scripts": {
"start": "node ./src/server.js",
"develop": "nodemon yarn start",
"lint": "eslint .",
"test": "jest --watchAll",
"test-ci": "jest"
},
"dependencies": {
"apollo-fetch": "latest",
"body-parser": "^1.19.0",
"cheerio": "latest",
"dotenv": "^8.2.0",
"eslint-config-eq-author": "^2.0.2",
"express": "^4.17.1",
"express-pino-logger": "latest",
"graphql": "latest",
"helmet": "latest",
"jsonwebtoken": "latest",
"lodash": "latest",
"request": "latest",
"request-promise": "latest",
"uuid": "latest"
},
"devDependencies": {
"eslint": "^6.8.0",
"jest": "^25.1.0",
"nodemon": "^2.0.2"
}
}