This repository has been archived by the owner on Jun 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
59
60
61
62
63
64
{
"name": "slushy",
"version": "1.0.0",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/body-parser": "1.19.0",
"@types/express": "4.17.1",
"@types/fs-extra": "^8.0.0",
"@types/helmet": "^0.0.45",
"@types/jest": "^25.1.2",
"@types/lodash": "4.14.149",
"@types/multer": "^1.3.7",
"@types/node": "13.9.3",
"@types/prettier": "1.19.1",
"@types/supertest": "2.0.7",
"@types/swagger-ui-express": "3.0.0",
"@types/uuid": "7.0.2",
"husky": "4.2.3",
"jest": "25.2.0",
"lerna": "3.20.2",
"lint-staged": "10.0.9",
"openapi-types": "1.3.5",
"prettier": "2.0.2",
"supertest": "4.0.2",
"ts-jest": "25.2.1",
"ts-node": "8.7.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.2"
},
"scripts": {
"postinstall": "lerna exec yarn install && yarn bootstrap",
"example": "yarn example:gen && yarn example:start",
"example:gen": "ts-node codegen/src/index.ts gen example/pet.yaml example/src/generated",
"example:start": "ts-node example/src/index.ts",
"build": "lerna run build --sort",
"bootstrap": "lerna bootstrap --force-local && yarn run link",
"link": "lerna run link",
"test": "lerna run test",
"lint": "lerna run lint",
"clean": "lerna run clean && rm -rf node_modules/"
},
"prettier": "./.prettierrc.json",
"lint-staged": {
"**/*.{ts,json}": [
"prettier --write",
"git add"
],
"docs/**/*.md": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@slushy/example": "file:example",
"@slushy/server": "file:server"
}
}