-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.78 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.78 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
{
"name": "empa-trainer",
"version": "0.1.0",
"private": true,
"homepage": "https://holden-caulfield.github.io/empa-trainer",
"dependencies": {
"@tonaljs/array": "^3.2.3",
"@tonaljs/chord": "^3.2.3",
"@tonaljs/note": "^3.2.4",
"@tonaljs/progression": "^3.2.3",
"@tonaljs/range": "^3.2.4",
"@tonaljs/tonal": "^3.2.2",
"chroma-js": "^1.3.4",
"ramda": "^0.24.1",
"react": "^16.11",
"react-dom": "^16.11",
"react-fontawesome": "^1.6.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts": "3.2.0",
"redux": "^4.0.1",
"redux-logic": "^2.1.1",
"reduxsauce": "^0.6.0",
"soundfont-player": "^0.10.6",
"styled-components": "^2.2.1",
"vexflow": "^1.2.84"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom --setupTestFrameworkScriptFile=./testBootstrap.js",
"eject": "react-scripts eject",
"prettier": "prettier --write \"src/**/*.{js,jsx}\"",
"precommit": "lint-staged",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"gh-pages": "^1.0.0",
"husky": "^0.14.3",
"lint-staged": "^4.1.0",
"prettier": "^1.6.1",
"reactotron-core-client": "^2.8.8",
"reactotron-react-js": "^3.3.6",
"reactotron-redux": "^3.1.2",
"web-audio-test-api": "^0.5.2"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"semi": false
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}