-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "airts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsc --watch & nodemon dist",
"test": "tsc && mocha dist/**/*.spec.js -C --exit",
"testn": "tsc && mocha dist/**/*.spec.js -C",
"lint": "eslint src --ext ts",
"tsc": "./node_modules/typescript/bin/tsc",
"docker": "docker build -t bs . && docker run -p 80:3001 bs"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.16.1",
"async": "^2.6.2",
"body-parser": "^1.18.3",
"cheerio": "^1.0.0-rc.2",
"express": "^4.16.4",
"md5": "^2.2.1",
"nodemailer": "^5.1.1",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.1",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"mocha": "^5.2.0",
"tsc": "^1.20150623.0",
"tslint": "^5.10.0",
"typescript": "^2.9.2",
"typescript-eslint-parser": "^16.0.0"
}
}