-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.09 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
{
"name": "virtual-piano",
"description": "A virtual piano",
"version": "1.0.0",
"private": true,
"license": "GNU GPL V3.0",
"author": {
"name": "Phát Mai",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/6thpath/virtual-piano.git"
},
"engines": {
"node": ">= 14"
},
"scripts": {
"postinstall": "patch-package",
"postuninstall": "patch-package",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"serve": "serve -s build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"preanalyze": "GENERATE_SOURCEMAP=true react-app-rewired build",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"dependencies": {
"@6thpath/design-system": "^1.0.2",
"@tonejs/midi": "2.0.27",
"classnames": "2.3.1",
"customize-cra": "1.0.0",
"lodash.debounce": "4.0.8",
"react": "17.0.2",
"react-app-rewired": "2.1.8",
"react-dom": "17.0.2",
"react-scripts": "4.0.3",
"recoil": "0.4.1",
"tone": "14.7.77",
"typescript": "4.4.3",
"web-vitals": "2.1.0"
},
"devDependencies": {
"@6thpath/eslint-config": "^1.0.4",
"@types/lodash.debounce": "4.0.6",
"@types/node": "16.10.2",
"@types/react": "17.0.27",
"@types/react-dom": "17.0.9",
"babel-plugin-transform-remove-console": "6.9.4",
"esbuild-loader": "^2.15.1",
"eslint": "7.32.0",
"husky": "7.0.2",
"lint-staged": "11.2.0",
"patch-package": "6.4.7",
"source-map-explorer": "2.5.2"
},
"eslintConfig": {
"extends": [
"@6thpath/eslint-config/typescript-react"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"eslint --fix"
]
}
}