-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "promeditor",
"version": "0.1.2",
"license": "Apache-2.0",
"author": "David Kaltschmidt",
"repository": "https://github.com/davkal/promeditor",
"bugs": "https://github.com/davkal/promeditor/issues",
"proxy": "http://localhost:9090",
"dependencies": {
"immutable": "^3.8.2",
"prismjs": "^1.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"slate": "^0.32.1",
"slate-plain-serializer": "^0.5.1",
"slate-react": "^0.11.1"
},
"devDependencies": {
"babel-eslint": "^8.1.2",
"eslint": "^4.14.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.5.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "^1.9.2",
"react-scripts": "1.0.12"
},
"scripts": {
"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": {
"src/**/*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
}
}