-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 897 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
{
"name": "open-web-simple-storage",
"version": "0.0.6",
"description": "Open Web Simple Storage",
"main": "index.js",
"author": "culturist",
"license": "MIT",
"scripts": {
"test": "tsc && node ./dist/index.js",
"watch": "tsc -w",
"build": "tsc",
"start": "node ./dist/index.js",
"init": "yarn install && tsc && node ./dist/index.js",
"clean": "rm -rf ./node_modules",
"install:prod": "yarn install --production"
},
"dependencies": {
"body-parser": "^1.19.0",
"crypto-js": "^3.1.9-1",
"extend": "^3.0.2",
"request-ip": "^2.1.3",
"restify": "^8.4.0"
},
"devDependencies": {
"@types/crypto-js": "^3.1.43",
"@types/extend": "^3.0.1",
"@types/node": "^12.7.2",
"@types/request-ip": "^0.0.34",
"@types/restify": "^7.2.12",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}