-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.42 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
{
"name": "nodejs.rest.api.td",
"version": "0.0.1",
"description": "NodeJS REST API",
"author": "Ghassen",
"license": "MIT",
"scripts": {
"test": "mocha",
"precoverage": "rimraf .nyc_output/ coverage/",
"coverage": "nyc npm run test",
"build": "rimraf ./dist && tsc --skipLibCheck",
"start": "node dist/server.js",
"start:dev": "nodemon",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"pre-commit": "lint-staged",
"prettier:check": "prettier --check ./src",
"prettier:fix": "prettier --write ./src",
"prisma": "prisma generate"
},
"dependencies": {
"@prisma/client": "4.4.0",
"dotenv": "16.0.3",
"express": "4.18.1",
"superstruct": "0.16.5"
},
"devDependencies": {
"@types/chai": "4.3.3",
"@types/express": "4.17.14",
"@types/mocha": "10.0.0",
"@types/node": "18.7.23",
"@types/sinon": "10.0.13",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/eslint-plugin-tslint": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"chai": "4.3.6",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"mocha": "10.0.0",
"nodemon": "2.0.20",
"nyc": "15.1.0",
"prisma": "4.4.0",
"rimraf": "3.0.2",
"sinon": "14.0.0",
"supertest": "6.2.4",
"ts-node": "10.9.1",
"typescript": "4.8.4"
}
}