-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "census",
"version": "0.1.0",
"private": true,
"scripts": {
"test": "jest --detectOpenHandles --runInBand --verbose",
"prod": "tsc && node ./build/app.js",
"lint": "./node_modules/.bin/eslint --ext .ts .",
"lint:fix": "./node_modules/.bin/eslint --ext .ts . --fix",
"build": "tsc",
"start": "ts-node app.ts",
"seed": "ts-node ./scripts/seed.ts"
},
"dependencies": {
"body-parser": "^1.19.0",
"core-js": "^3.7.0",
"cors": "^2.8.5",
"csv": "^5.3.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.11.0",
"graphql": "^15.4.0",
"json-to-graphql-query": "^2.0.0",
"lodash": "^4.17.20",
"mongoose": "^5.10.13",
"morgan": "^1.10.0",
"node-html-parser": "^2.0.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.165",
"@types/mongoose": "^5.10.0",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.7",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"jest": {
"preset": "ts-jest"
}
}