-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "@riff/root",
"repository": "https://github.com/viswanathr88/riff-music.git",
"license": "MIT",
"private": true,
"workspaces": [
"packages/app",
"packages/core/*"
],
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-react": "^7.22.0",
"html-webpack-plugin": "^4.5.1",
"husky": "4.3.8",
"lint-staged": "10.5.3",
"prettier": "2.2.1",
"source-map-loader": "^2.0.0",
"style-loader": "^2.0.0",
"typescript": "^4.1.3",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"prebuild": "git clean -fdx packages -e packages/*/node_modules",
"start": "webpack serve --mode development",
"build": "webpack --mode production"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}