-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "catcat-cloud",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"predev:docker": "npm install",
"dev:docker": "npm run dev",
"dev": "nodemon --watch src --ext ts,js,json --exec \"ts-node .\"",
"perf": "nodemon --watch test --ext ts,js,json --exec \"ts-node ./test/perf/performance\"",
"server": "nodemon --watch src --ext ts,js,json --exec \"ts-node ./src/server.js \"",
"lint": "tslint src/**/*.ts{,x}"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"btoa": "^1.2.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^6.1.0",
"express": "^4.16.3",
"express-fileupload": "^1.0.0-alpha.1",
"express-request-proxy": "^2.2.2",
"ipfs-http-client": "^33.1.0",
"memory-stream": "0.0.3",
"openpgp": "^4.1.1",
"pg": "^7.5.0",
"querystring": "^0.2.0",
"reflect-metadata": "^0.1.12",
"sequelize": "^5.10.1",
"sequelize-typescript": "^0.6.11"
},
"devDependencies": {
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/node": "^10.11.7",
"nodemon": "^1.18.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
}
}