-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "raikou",
"version": "0.1.0",
"description": "A media server of sorts",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"prod": "NODE_ENV=PRODUCTION ts-node src/index.ts",
"dev": "NODE_ENV=DEVTEST ts-node src/index.ts",
"local": "NODE_ENV=LOCAL tsnd --respawn src/index.ts",
"update": "git pull origin master && npm i && pm2 restart raikou1"
},
"author": "Shelby McCowan",
"license": "ISC",
"dependencies": {
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/helmet": "^4.0.0",
"@types/memory-cache": "^0.2.1",
"@types/node": "^14.6.3",
"@types/sharp": "^0.26.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"dotenv-defaults": "^2.0.1",
"express": "^4.17.1",
"memory-cache": "^0.2.0",
"sharp": "^0.27.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.0.0-pre.62",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3",
"winston": "^3.3.3"
}
}