generated from potados99/ts-ready
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.43 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": "inu-api",
"version": "0.2.0",
"description": "공개된 교내 API 서버입니다.",
"scripts": {
"test": "jest",
"dev": "nodemon --exec ts-node index.ts",
"build": "tsc",
"start": "node dist/index.js",
"preview": "tsc && node dist/index.js",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inu-appcenter/inu-api.git"
},
"keywords": [],
"author": "potados99",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/inu-appcenter/inu-api/issues"
},
"homepage": "https://github.com/inu-appcenter/inu-api#readme",
"dependencies": {
"express": "^4.17.3",
"node-fetch": "^2.6.1",
"oracledb": "^5.3.0",
"serialize-error": "^8.1.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.31",
"@types/node-fetch": "^2.5.10",
"@types/oracledb": "^5.2.2",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.3.2",
"ts-jest": "^26.5.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.(test|spec)\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"bracketSpacing": false,
"printWidth": 100
}
}