-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.17 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "template-datasvc-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --testRegex 'test/unit'",
"test:integration": "TEST_ENV=integration jest --testRegex 'test/integration' --forceExit",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"build": "rimraf ./build && tsc",
"migrate": "npx db-migrate up",
"start": "npm run migrate && npm run build && npm run copy:assets && node build/src/server.js",
"start:dev": "nodemon",
"start-prod": "npm run migrate && node build/src/server.js",
"copy:assets": "cp -r 'src/assets/' 'build/assets/'",
"lint": "eslint \"**/*.{ts,tsx}\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@azure/service-bus": "^7.7.3",
"body-parser": "^1.20.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"date-fns": "^2.29.2",
"db-migrate": "^0.11.14",
"db-migrate-pg": "^1.5.2",
"dotenv": "^16.0.3",
"express": "4.18.2",
"geojson-validation": "^1.0.2",
"helmet": "^6.0.0",
"jest-fetch-mock": "^3.0.3",
"jwt-decode": "^3.1.2",
"lodash": "4.17.21",
"node-fetch": "^2.6.7",
"nodets-ms-core": "0.0.7",
"pg": "^8.8.0",
"pg-format": "^1.0.4",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"@faker-js/faker": "^8.0.1",
"@jest-mock/express": "^2.0.1",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/geojson": "^7946.0.10",
"@types/geojson-validation": "^1.0.3",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.9",
"@types/node-fetch": "^2.6.11",
"@types/pg": "^8.6.5",
"@types/pg-format": "^1.0.2",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"jest-fetch-mock": "^3.0.3",
"jest-html-reporter": "3.7.1",
"nodemon": "^2.0.19",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}