-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.69 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
53
54
55
56
57
58
59
60
61
{
"name": "cellarapi",
"version": "1.0.0",
"description": "",
"main": "./src/index.ts",
"scripts": {
"postinstall": "npm run build",
"start": "node dist/index.js",
"tdd": "./node_modules/.bin/jest --watchAll",
"test": "NODE_ENV=test; ./node_modules/.bin/jest",
"clean": "rm -rf ./dist/ && mkdir dist",
"dev": "npm run clean && ./node_modules/.bin/tsc -w",
"build": "./node_modules/.bin/tsc",
"serve": "./node_modules/.bin/nodemon dist/index.js",
"tsc": "tsc",
"ip": "curl http://169.254.169.254/latest/meta-data/public-ipv4",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"heroku-run-build-script": true,
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "2.4.3",
"body-parser": "1.18.3",
"compression": "1.7.3",
"cors": "2.8.4",
"dotenv": "6.1.0",
"express": "4.16.4",
"express-jwt": "5.3.1",
"helmet": "3.21.1",
"jsonwebtoken": "8.3.0",
"mongoose": "5.7.5",
"morgan": "1.9.1",
"node-fetch": "2.3.0",
"rand-token": "0.4.0",
"superagent-defaults": "0.1.14",
"snyk": "^1.236.1"
},
"devDependencies": {
"@types/bcryptjs": "2.4.2",
"@types/compression": "0.0.36",
"@types/cors": "2.8.4",
"@types/express": "4.16.0",
"@types/express-jwt": "0.0.40",
"@types/helmet": "0.0.42",
"@types/jest": "23.3.9",
"@types/jsonwebtoken": "7.2.8",
"@types/mongoose": "5.3.1",
"@types/morgan": "1.7.35",
"@types/node": "10.11.7",
"@types/node-fetch": "2.1.4",
"@types/supertest": "2.0.6",
"jest": "23.6.0",
"nodemon": "1.18.6",
"supertest": "3.3.0",
"ts-jest": "23.10.4",
"typescript": "3.1.4"
},
"snyk": true
}