-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "carrot_mmu",
"version": "1.0.0",
"main": "./build/src/index.js",
"license": "MIT",
"dependencies": {
"@types/request-promise": "^4.1.42",
"base62": "^2.0.1",
"bs58": "^4.0.1",
"cheerio": "^1.0.0-rc.2",
"express-unless": "^0.5.0",
"js-salsa20": "^1.0.0",
"mongo-dot-notation": "^1.2.0",
"random-useragent": "^0.3.1",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"request-to-curl": "^0.1.1",
"tslint-config-airbnb": "^5.11.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.11",
"@types/express": "^4.16.0",
"@types/express-unless": "^0.5.1",
"@types/mongoose": "^5.2.20",
"@types/random-useragent": "^0.3.0",
"@types/request": "^2.48.0",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"gts": "^0.8.0",
"mongoose": "^5.3.7",
"nodemon": "^1.18.5",
"ts-node": "^7.0.1",
"ts-node-dev": "^1.0.0-pre.39",
"tslint": "^5.11.0",
"typescript": "~2.8.0"
},
"scripts": {
"dev": "ts-node ./src/index.ts",
"devv": "ts-node-dev ./src/index.ts",
"start": "node ./build/src/index.js",
"start-watch": "nodemon ./build/src/index.js",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
}
}