-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 1.72 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
{
"name": "musicroom",
"version": "1.0.0",
"description": "MusicRoom monorepo",
"private": true,
"main": "index.js",
"repository": "https://github.com/AdonisEnProvence/MusicRoom.git",
"author": "prastoin <[email protected]>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"api-docs": "scripty",
"start": "scripty",
"greet": "scripty",
"dev": "scripty",
"build:tsc": "scripty",
"clean": "scripty",
"lint": "scripty",
"test": "scripty",
"prepare": "husky install",
"test:e2e": "scripty",
"test:e2e:start": "scripty",
"test:e2e:run": "scripty",
"test:e2e:stop": "scripty"
},
"volta": {
"node": "16.8.0",
"yarn": "1.22.10"
},
"engines": {
"node": "^16.8.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@commitlint/config-lerna-scopes": "^12.1.4",
"@microsoft/api-documenter": "^7.13.9",
"@microsoft/api-extractor": "^7.15.2",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"commitlint": "^12.1.4",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-adonis": "^1.3.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"lerna-changelog": "^1.0.1",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"scripty": "^2.0.0",
"tsm": "^2.1.3",
"zx": "^4.2.0"
},
"scripty": {
"path": "./scripts/workspace"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
}
}