-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "nomakase",
"version": "1.0.0",
"description": "server for the project, \"Nomakase\"",
"scripts": {
"build": "tsc --project ./",
"start": "npm run build && node dist/index.js > /dev/null 2>&1",
"dev-start": "npm run build && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "tsc -w",
"dev": "nodemon dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nomakase/server-common.git"
},
"author": "Team NoYes",
"license": "ISC",
"bugs": {
"url": "https://github.com/nomakase/server-common/issues"
},
"homepage": "https://github.com/nomakase/server-common#readme",
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/ioredis": "^4.22.2",
"@types/jsonwebtoken": "^8.5.1",
"@types/multer": "^1.4.5",
"@types/node": "^14.14.37",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/redis": "^2.8.28",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"google-auth-library": "^6.1.6",
"ioredis": "^4.25.0",
"jsonwebtoken": "^8.5.1",
"moment-timezone": "^0.5.33",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"redis": "^3.1.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.32"
}
}