-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "backend",
"version": "1.1.4",
"description": "",
"main": "server.js",
"directories": {
"src": "src"
},
"scripts": {
"build": "tsc",
"ci": "knex migrate:latest --env ci && knex seed:run --env ci && ts-node-dev --no-notify --ignore-watch node_modules -r tsconfig-paths/register src/server.ts",
"dev": "ts-node-dev --no-notify --ignore-watch node_modules -r tsconfig-paths/register src/server.ts",
"migrate:up": "knex migrate:latest --env dev",
"migrate:down": "knex migrate:rollback --all --env dev",
"seed:dev": "knex seed:run --env dev",
"reset:dev": "npm run migrate:down && npm run migrate:up && npm run seed:dev",
"test:ci": "jest --ci --forceExit",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test": "npm run test:watch"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@iteam/eslint-config-node": "0.3.0",
"@types/cors": "^2.8.10",
"@types/dedent": "^0.7.0",
"@types/express": "^4.17.11",
"@types/hapi__joi": "^17.1.6",
"@types/http-errors": "^1.8.0",
"@types/jest": "^25.2.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/nock": "^11.1.0",
"@types/supertest": "^2.0.11",
"@types/xml2json": "0.11.0",
"eslint": "7.0.0",
"husky": "4.2.5",
"jest": "^26.6.3",
"jest-watch-typeahead": "0.6.0",
"nock": "^13.0.11",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"supertest": "^6.1.3",
"ts-jest": "^26.5.1",
"ts-node": "9.1.1",
"ts-node-dev": "^1.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "3.8.3"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@iteam/config": "^12.1.2",
"@types/connect-timeout": "0.0.34",
"@types/request": "^2.48.5",
"@types/sax": "^1.2.1",
"axios": "0.21.1",
"body-parser": "^1.19.0",
"connect-timeout": "^1.9.0",
"cors": "^2.8.5",
"dedent": "^0.7.0",
"express": "^4.17.1",
"express-async-handler": "1.1.4",
"express-joi-validation": "^4.0.3",
"http-errors": "1.7.3",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.17",
"moment": "2.26.0",
"personnummer": "3.1.0",
"pg": "^8.5.1",
"soap": "^0.35.0",
"xml2json": "0.12.0"
}
}