-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.77 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
{
"name": "tobenamed-backend",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"scripts": {
"start": "node -r tsconfig-paths/register -r ts-node/register ./src/index.ts",
"build": "npm run clean && tsc --p ./tsconfig.json",
"lint": "eslint .",
"lintfix": "eslint . --fix",
"test": "mocha test/**/*.ts --exit",
"coverage": "npm run clean && nyc --reporter=text --reporter=html --reporter=lcov mocha test/**/*.ts",
"clean": "rimraf -rf ./build/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FINDarkside/tobenamed-backend.git"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/FINDarkside/tobenamed-backend/issues"
},
"homepage": "https://github.com/FINDarkside/tobenamed-backend#readme",
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.9",
"@types/joi": "^14.3.4",
"@types/node": "^14.14.16",
"@types/uuid": "^8.3.0",
"bcrypt": "^5.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.3.0",
"pg": "^8.5.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typeorm": "^0.2.29",
"typescript": "^4.1.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.16.0",
"jsdom": "^16.4.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"supertest": "^6.0.1"
}
}