-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.56 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
{
"name": "mude",
"version": "0.0.1",
"description": " Web app to write music",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/AlvYuste/mude.git"
},
"author": "Alvaro Yuste Torregrosa <[email protected]> (https://alvyuste.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlvYuste/mude/issues"
},
"homepage": "https://github.com/AlvYuste/mude#readme",
"scripts": {
"start": "parcel ./src/index.html",
"build": "parcel build ./src/index.html"
},
"dependencies": {
"@blueprintjs/core": "^3.10.0",
"@emotion/core": "^10.0.5",
"@emotion/styled": "^10.0.5",
"@firebase/app": "^0.3.5",
"@firebase/app-types": "^0.3.2",
"@firebase/auth": "^0.9.1",
"@firebase/database": "^0.3.8",
"@reach/router": "^1.2.1",
"normalize.css": "^8.0.1",
"ramda": "^0.26.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hotkeys": "^1.1.4",
"react-redux": "^6.0.0",
"react-sortable-hoc": "^0.8.4",
"reduce-reducers": "^0.4.3",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"redux-undo": "^1.0.0-beta9-9-7",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.11.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.2.1",
"lint-staged": "^8.1.0",
"parcel-bundler": "^1.6.1",
"prettier": "1.15.3",
"redux-devtools-extension": "^2.13.7",
"redux-logger": "^3.0.6"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties",
[
"@babel/plugin-transform-react-jsx",
{
"pragmaFrag": "React.Fragment"
}
],
[
"@babel/plugin-proposal-decorators",
{
"decoratorsBeforeExport": true
}
],
[
"@babel/transform-runtime",
{
"helpers": false,
"regenerator": true
}
]
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}