-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "midimarblemachine",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^1.4.0",
"file-saver": "^1.3.8",
"gh-pages": "^1.1.0",
"lodash": "^4.17.10",
"makerjs": "^0.9.93",
"midiconvert": "https://github.com/Wintergatan/MidiConvert",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scripts": "1.1.1",
"styled-components": "^3.1.6",
"tone": "^0.11.11"
},
"repository": {
"type": "git",
"url": "https://github.com/Wintergatan/midimarblemachine"
},
"homepage": "https://wintergatan.github.io/midimarblemachine",
"license": "MIT",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint src",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json}": ["prettier --write", "eslint --fix", "git add"]
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.15.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.5.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "1.10.2"
}
}