-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.82 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
{
"name": "emwas-api",
"version": "1.0.1",
"description": "Porn search utility",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "npx tslint 'src/**/*.ts' 'test/**/*.ts' --format prose",
"lint:fix": "npx tslint 'src/**/*.ts' 'test/**/*.ts' --fix -q",
"lint:watch": "onchange 'src/**/*.ts' 'test/**/*.ts' -- npm run lint:fix",
"build": "npx rimraf build/* && npx tsc",
"build:watch": "tsc -w",
"node:watch": "nodemon ./build/index.js",
"dev": "concurrently -k -n \"node,tsc ,lint,test\" -c \"green.bold,blue.bold,yellow.bold,red.bold\" -s all \"npm run node:watch\" \"npm run build:watch\" \"npm run lint:watch\" \"npm run test:watch\"",
"start": "export PORT=8081 && npm install && npm run build && node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabienleite/emwas.git"
},
"keywords": [
"porn",
"search"
],
"author": "Fabien Leite",
"license": "CECILL-2.1",
"bugs": {
"url": "https://github.com/fabienleite/emwas/issues"
},
"homepage": "https://github.com/fabienleite/emwas#readme",
"dependencies": {
"aws-serverless-express": "^3.3.6",
"axios": "^0.19.0",
"body-parser": "^1.18.0",
"cheerio": "^1.0.0-rc.2",
"cors": "^2.8.5",
"express": "^4.16.4"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cheerio": "^0.22.10",
"@types/cors": "^2.8.4",
"@types/express": "^4.1.0",
"@types/jest": "^24.0.11",
"@types/node": "^12.0.0",
"@types/supertest": "^2.0.7",
"concurrently": "^4.1.0",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"onchange": "^6.0.0",
"rimraf": "^2.6.3",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"tslint": "^5.13.1",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.3.0"
}
}