-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.33 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "apibuilder-javascript-generator",
"version": "0.0.77",
"description": "apibuilder code generators for JavaScript",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json && rsync -a --include '*/' --include '*.hbs' --include '*.ejs' --exclude '*' src/ dist",
"dev:start": "nodemon ./src/server/index.ts",
"dev:debug": "nodemon --inspect ./src/server/index.ts",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
"pretest": "npm run lint",
"test": "jest --maxWorkers=4",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flowcommerce/apibuilder-javascript-generator.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/flowcommerce/apibuilder-javascript-generator/issues"
},
"homepage": "https://github.com/flowcommerce/apibuilder-javascript-generator#readme",
"devDependencies": {
"@types/browserify": "^12.0.36",
"@types/debug": "^4.1.5",
"@types/ejs": "^3.1.2",
"@types/express": "^4.17.17",
"@types/faker": "^4.1.12",
"@types/invariant": "^2.2.33",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.160",
"@types/node": "^10.17.28",
"@types/prettier": "^1.19.1",
"@types/prop-types": "^15.7.3",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"commander": "^4.1.1",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript-base": "^4.0.2",
"faker": "^4.1.0",
"got": "^8.3.1",
"jest": "^24.9.0",
"mkdirp": "^0.5.5",
"nock": "^11.9.1",
"nodemon": "^2.0.4",
"supertest": "^6.1.6",
"ts-jest": "^24.3.0",
"ts-node": "^10.9.1",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2"
},
"dependencies": {
"@loopback/openapi-v3-types": "^1.2.1",
"apibuilder-js": "0.0.17",
"ast-types": "^0.13.4",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.19.0",
"dd-trace": "^1.3.0",
"debug": "^4.1.1",
"ejs": "^3.1.5",
"express": "^4.17.1",
"handlebars": "^4.7.6",
"hbs": "^4.1.1",
"invariant": "^2.2.4",
"lodash": "^4.17.20",
"prettier": "^1.19.1",
"recast": "^0.18.10",
"typescript": "^4.9.5"
}
}