-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 962 Bytes
/
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
{
"name": "Tomosume-server",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"test": "jest",
"start": "yarn run ts-node src/index.ts"
},
"repository": "https://github.com/oxyu8/Tomosume-server.git",
"author": "oxyu8 <[email protected]>",
"license": "MIT",
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/tests/**/*.test.ts"
]
},
"devDependencies": {
"@types/express": "4.17.13",
"@types/jest": "26.0.24",
"@types/mysql": "2.15.19",
"@types/node": "16.4.13",
"@types/uuid": "8.3.1",
"jest": "27.0.6",
"ts-jest": "27.0.4",
"ts-node": "10.1.0",
"typescript": "4.3.5",
"uuid": "8.3.2"
},
"dependencies": {
"dotenv": "10.0.0",
"express": "4.17.1",
"mysql": "2.18.1"
}
}