This repository has been archived by the owner on Sep 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.48 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
{
"name": "soundnode-redux",
"version": "1.0.0",
"description": "Music client based on SoundCloud API",
"main": "index.js",
"author": "MiniPekka",
"license": "ISC",
"private": true,
"workspaces": [
"packages/*"
],
"dependencies": {},
"devDependencies": {
"eslint": "^6.8.0",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint-plugin-typescript": "^0.14.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-config-prettier": "^6.10.1",
"lerna": "^3.20.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"lint-staged": "^10.0.10"
},
"scripts": {
"bootstrap": "lerna clean --yes && lerna bootstrap",
"add:client": "lerna add --scope=@soundnode-redux/client",
"add:server": "lerna add --scope=@soundnode-redux/server",
"exec:client": "lerna exec --scope @soundnode-redux/client",
"exec:server": "lerna exec --scope @soundnode-redux/server",
"build:client": "yarn exec:client yarn build",
"start:client": "yarn exec:client yarn start",
"start:server": "yarn exec:server yarn start",
"dev:client": "yarn exec:client yarn dev",
"dev:server": "NODE_ENV=development yarn exec:server yarn dev",
"lint:client": "yarn exec:client yarn lint",
"lint:cilent:fix": "yarn exec:client yarn lint:fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
}
}