-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.93 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
{
"name": "gama-backend",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/gama-group/gama-backend.git",
"author": "Daniel <[email protected]>",
"license": "MIT",
"engines": {
"node": "14.x"
},
"scripts": {
"start": "node dist/index.js",
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored",
"dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules src/index.ts",
"test": "jest --coverage --runInBand"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/node": "^7.13.13",
"@babel/plugin-proposal-decorators": "^7.14.2",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@types/express": "^4.17.11",
"@types/node": "^15.0.2",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^26.6.3",
"module": "^1.2.5",
"require": "^2.4.20",
"supertest": "^6.1.3",
"ts-jest": "^26.5.6",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.10",
"@types/jest": "^26.0.23",
"@types/jsonwebtoken": "^8.5.1",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"bcrypt": "^5.0.1",
"celebrate": "^14.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-humps": "^0.1.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"supertest": "^6.1.3",
"typeorm": "^0.2.32"
},
"jest": {
"setupFiles": [
"./jest-setup-file.ts"
]
}
}