-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.29 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
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch src/ --exec ts-node src/index.ts -e ts",
"build": "tsc",
"prod": "npm run build && node dist/index.js",
"release": "standard-version",
"test": "jest --no-cache"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
},
"keywords": [],
"author": "Luan Lima <luanyata@gmail.com>",
"license": "MIT",
"dependencies": {
"celebrate": "^12.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.13",
"sqlite3": "^4.1.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"@types/supertest": "^2.0.8",
"commitizen": "^4.0.4",
"cross-env": "^7.0.2",
"cz-emoji": "^1.2.1",
"jest": "^25.3.0",
"nodemon": "^2.0.3",
"standard-version": "^8.0.1",
"supertest": "^4.0.2",
"typescript": "^3.8.3",
"ts-jest": "^25.3.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji"
}
}
}