-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.83 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
{
"name": "typescript-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn src/main/index.ts",
"build": "rimraf dist && npx tsc -p tsconfig-build.json",
"start": "npm run build && node dist/src/main/index.js",
"lint": "npx eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "npm test -- --watch",
"test:staged": "npm test -- --findRelatedTests",
"test:coverage": "npm test -- --coverage",
"test:fb-api": "npm test -- -c ./jest.integration.config.js tests/external/facebook-api.test.ts",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@jest-mock/express": "^1.4.5",
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/module-alias": "^2.0.1",
"@types/node": "^16.11.0",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.2",
"jest": "^27.2.5",
"jest-mock-extended": "^2.0.4",
"lint-staged": "^11.2.3",
"pg-mem": "^2.1.8",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"engines": {
"node": "16.x"
},
"dependencies": {
"axios": "^0.24.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.8",
"typeorm": "^0.2.29"
}
}