-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.63 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
{
"name": "nlw-ignite-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --exit-child ./src/server.ts",
"start:local": "node dist/src/server.js",
"test": "jest --passWithNoTests --runInBand",
"test:staged": "npm run test",
"test:unit": "npm run test -- --watch -c jest-unit.config.js",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.ts": [
"eslint 'src/**' --fix",
"npm run test:staged"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fcaspirro/nlw-ignite-server.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fcaspirro/nlw-ignite-server/issues"
},
"homepage": "https://github.com/Fcaspirro/nlw-ignite-server#readme",
"dependencies": {
"@prisma/client": "^4.3.1",
"cors": "^2.8.5",
"express": "^4.18.1"
},
"devDependencies": {
"@types/babel__core": "^7.1.19",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^29.0.1",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.1",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.1",
"jest": "^29.0.3",
"lint-staged": "^13.0.3",
"prisma": "^4.3.1",
"ts-jest": "^29.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.3"
}
}