-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.23 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.23 KB
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
{
"name": "nvqeb-api",
"description": "API NVQEB",
"version": "1.0.0",
"license": "UNLICENSED",
"scripts": {
"upgrade-packages": "yarn upgrade && yarn code-check",
"code-check": "yarn tslint && yarn tsc",
"tslint": "tslint -c tslint.json -p .",
"tsc": "tsc -noEmit",
"test": "parcel build src/test.ts -d out --no-minify --target=node && node out/test.js"
},
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"child-process-promise": "^2.2.1",
"image-size": "^0.6.3",
"localized-strings": "^0.2.0",
"moment": "^2.17.1",
"mz": "^2.7.0",
"raven": "^2.4.0",
"rethinkdbdash": "^2.3.31",
"sharp": "^0.22.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.1",
"@types/image-size": "^0.0.29",
"@types/mz": "^0.0.32",
"@types/node": "^8.0.26",
"@types/raven": "^2.1.4",
"@types/sharp": "^0.22.2",
"parcel": "^1.10.3",
"parcel-bundler": "^1.10.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"tslint-immutable": "^4.6.0",
"typescript": "^2.9.2"
}
}