forked from dyne/restroom-mw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.52 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"private": true,
"name": "restroom-mw",
"repository": "https://github.com/dyne/restroom-mw",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"packages/create-restroom"
]
},
"engines": {
"node": "^14.15.0 || ^16.13.0"
},
"scripts": {
"prerelease": "yarn build && yarn doc && git add docs && git commit -m 'docs: 📚️ 📝 Update docs'",
"release": "npm whoami && lerna publish",
"release:next": "lerna publish --canary -y --pre-dist-tag next --preid $(git rev-parse --short HEAD)",
"c": "gacp --emoji emoji --add false",
"clean": "turbo run clean",
"unlinks": "turbo run unlinks",
"links": "turbo run links",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"pretest": "turbo run build",
"test": "c8 ava --no-worker-threads",
"watch:test": "ava -s --watch",
"watch": "turbo run watch --parallel",
"build": "turbo run build --parallel",
"serve": "babel-watch test/fixtures/server.js",
"doc": "turbo run doc"
},
"ava": {
"failFast": true,
"verbose": true,
"timeout": "1m",
"extensions": [
"ts",
"js"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"reporter": [
"lcovonly",
"text"
],
"lines": 85,
"check-coverage": true
},
"husky": {
"hooks": {
"commit-msg": "devmoji -e",
"pre-commit": "yarn test"
}
},
"devDependencies": {
"@babel/core": "^7.17.4",
"@babel/plugin-transform-runtime": "^7.12.15",
"@types/node": "^17.0.35",
"@types/sinon": "^10.0.11",
"@types/sqlite3": "^3.1.8",
"@types/swagger-ui-express": "^4.1.2",
"ava": "^4.0.1",
"babel-watch": "^7.4.0",
"body-parser": "^1.19.2",
"c8": "^7.6.0",
"cbor": "^8.1.0",
"devmoji": "^2.1.13",
"documentation": "^13.2.5",
"errorhandler": "^1.5.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"gacp": "^2.10.2",
"husky": "^5.0.9",
"lerna": "^4.0.0",
"morgan": "^1.10.0",
"prettier": "^2.2.1",
"qs": "^6.9.6",
"rimraf": "^3.0.2",
"sinon": "^9.2.4",
"supertest": "^6.1.3",
"ts-node": "^10.5.0",
"tslint": "^6.1.3",
"turbo": "^1.0.9",
"typescript": "^4.6.2"
},
"resolutions": {
"babel-core": "^7.0.0-bridge.0"
},
"dependencies": {
"@babel/preset-env": "^7.12.16",
"@dyne/sawroom-client": "^1.9.0",
"express": "^4.17.2",
"zenroom": "^2.2.3-955bd13b"
},
"packageManager": "[email protected]"
}