-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.8 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "simulation",
"version": "1.0.0",
"description": "CS 3274 Final Project.",
"scripts": {
"build": "webpack --config webpack.prod.js",
"build:dev": "webpack --config webpack.dev.js",
"start": "http-server",
"start:dev": "concurrently --kill-others --names webpack,server 'webpack --watch --config webpack.dev.js' 'http-server -s'",
"lint": "eslint ."
},
"author": "Josh Wilson",
"license": "ISC",
"repository": "https://github.com/joshwilsonvu/simulation.git",
"dependencies": {
"@use-it/event-listener": "^0.1.3",
"audioworklet-polyfill": "^1.1.2",
"babel-core": "^6.26.3",
"babel-preset": "^1.0.7",
"es2015": "0.0.0",
"normalize.css": "^8.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet-async": "^1.0.2",
"react-icons": "^3.6.1",
"react-input-range": "^1.3.0",
"react-piano": "^3.1.2",
"simple-audio-worklet": "^1.0.1",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"acorn": "^6.1.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-styled-components": "^1.10.0",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^2.0.1",
"concurrently": "^4.1.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"eslint-plugin-compat": "^3.1.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"raw-loader": "^2.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1",
"worklet-loader": "^1.0.0"
},
"browserslist": [
"last 1 version",
"> 2%",
"not maintained node versions",
"not IE 11",
"not IE_Mob 11",
"not Edge 18",
"not dead"
],
"babel": {
"plugins": [
"babel-plugin-styled-components"
],
"presets": [
"@babel/env",
"@babel/react"
]
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:compat/recommended",
"plugin:react/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "babel-eslint",
"plugins": [
"react",
"react-hooks"
],
"rules": {
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"react/prop-types": [
0
]
},
"settings": {
"react": {
"version": "detect"
}
}
}
}