-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.74 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.74 KB
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
{
"name": "junox",
"version": "0.1.0",
"license": "GPL",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --mode development --config webpack.config.js",
"lint": "eslint src",
"build": "cross-env NODE_ENV=production rimraf dist && webpack --mode production --config webpack.config.js",
"stats": "cross-env NODE_ENV=production rimraf dist && webpack --mode production --config webpack.config.js --json > stats.json",
"deploy": "gh-pages --dist dist",
"test": "jest",
"tdd": "jest --watch",
"convert:patches": "node patches/Juno60.js"
},
"eslintConfig": {
"extends": "react-app"
},
"eslintIgnore": [
"src/vendor"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@babel/preset-env": "^7.4.4",
"audioworklet-polyfill": "^1.1.2",
"copy-to-clipboard": "^3.2.0",
"filesaver.js": "^1.3.4",
"lz-string": "^1.4.4",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-loader-spinner": "^2.3.0",
"react-piano": "^3.1.2",
"react-range": "^1.0.5",
"react-select": "^2.4.3",
"styled-components": "^4.2.0",
"styled-reset": "^2.0.9"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.3.2",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-0": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.5",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-export-extensions": "^6.22.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"csv-parser": "^2.3.0",
"eslint": "^5.16.0",
"eslint-config-react-app": "^4.0.0",
"eslint-plugin-flowtype": "^3.6.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.2.0",
"jest": "^24.8.0",
"mini-css-extract-plugin": "^0.6.0",
"prettier": "^1.17.0",
"pretty-quick": "^1.10.0",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"worklet-loader": "^1.0.0"
}
}