-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.76 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.76 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "vrpc",
"version": "1.0.0",
"description": "Type idea",
"main": "index.js",
"bin": {
"vrpc": "./dist/cli.js"
},
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.6",
"@types/lodash": "^4.14.138",
"@types/node": "^13.1.6",
"@types/prettier": "^1.15.2",
"@types/proper-lockfile": "^4.1.1",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.4",
"@types/request-promise-native": "^1.0.17",
"@types/rmfr": "^2.0.0",
"@types/sinon": "^9.0.4",
"@types/supertest": "^2.0.9",
"@types/tmp": "^0.1.0",
"@types/yargs": "^15.0.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"json-object-mapper": "^1.6.0",
"lodash": "^4.17.13",
"prettier": "^1.15.3",
"proper-lockfile": "^4.1.1",
"quicktype": "^15.0.243",
"reflect-metadata": "^0.1.13",
"rmfr": "^2.0.0",
"sinon": "^9.0.2",
"superagent": "^5.0.6",
"tmp": "^0.1.0",
"ts-mock-imports": "^1.3.0",
"typescript": "^3.2.1",
"yargs": "^15.1.0"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"chokidar-cli": "^2.1.0",
"jest": "^24.9.0",
"supertest": "^4.0.2",
"ts-jest": "^24.3.0",
"ts-node": "^8.2.0",
"ts-node-dev": "^1.0.0-pre.42"
},
"scripts": {
"test": "jest",
"test:services": "yarn generate:service_test",
"test:integrated": "yarn generate:service_test && jest tests/services",
"test:watch": "chokidar \"lib/**/*.ejs\" \"lib/**/*.ts\" \"tests/**/*.ts\" \"tests/**/*.json\" -c \"yarn run test\" --ignore runtest --ignore tests/snapshots",
"generate:type_definition": "yarn quicktype -s schema type_definition.schema.json -o lib/generated/type_definition.ts",
"generate:service_test": "ts-node tests/generate_service_tests.ts"
}
}