-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.76 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
{
"name": "synth",
"version": "0.1.0",
"description": "Synthesizer",
"repository": "[email protected]:0918nobita/synth.git",
"author": "0918nobita <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn gen-dts && webpack",
"dev": "yarn gen-dts && webpack serve",
"gen-dts": "tcm src",
"lint": "eslint . --ext '.js,.ts,.tsx'",
"format": "eslint . --fix --ext '.js,.ts,.tsx'",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"classnames": "^2.2.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-links": "^6.1.11",
"@storybook/react": "^6.1.11",
"@types/classnames": "^2.2.11",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.12",
"@types/redux-mock-store": "^1.0.2",
"@types/webmidi": "^2.0.4",
"@types/webpack-dev-server": "^3.11.1",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-deprecation": "^1.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"prettier": "^2.2.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.12",
"ts-node": "^9.1.1",
"typed-css-modules": "^0.6.4",
"typescript": "^4.1.3",
"webpack": "^4.44.2",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}