forked from carlosorojas/automation-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"name": "qatest",
"version": "1.0.0",
"description": "Test for qa automation",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"clean": "rimraf dist/*",
"tsc": "tsc",
"cp-assets": "ts-node tools/cpAssets",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"build": "npm-run-all clean lint tsc cp-assets",
"start": "node ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/request-promise": "^4.1.45",
"body-parser": "^1.19.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"multer": "^1.4.2",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"request-promise-native": "^1.0.8",
"routing-controllers": "^0.8.1-alpha.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.2",
"@types/fs-extra": "^8.0.1",
"@types/multer": "^1.4.2",
"@types/node": "^13.7.0",
"@types/request": "^2.48.4",
"@types/request-promise-native": "^1.0.17",
"@types/shelljs": "^0.8.6",
"fs-extra": "^8.1.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"shelljs": "^0.8.3",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
}
}