-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1000 Bytes
/
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
{
"name": "react-admin.com",
"version": "1.0.0",
"author": "Kirk Wang <[email protected]>",
"devDependencies": {
"@9renpoto/eslint-config": "4.4.0",
"@9renpoto/eslint-config-react": "4.3.0",
"eslint": "4.19.1",
"husky": "0.14.3",
"lerna": "2.11.0",
"lint-staged": "7.2.0",
"prettier-eslint-cli": "4.7.1"
},
"license": "MIT",
"lint-staged": {
"*.{js,jsx}": [
"prettier-eslint --write",
"eslint",
"git add"
],
"*.{md,css}": [
"prettier --write",
"git add"
]
},
"main": "n/a",
"private": true,
"workspaces": [
"website"
],
"repository": "ssh://[email protected]:Kirk-Wang/react-admin.com.git",
"scripts": {
"build": "lerna run build && cp index.html website/build/react-admin/index.html",
"deploy": "cd website && publish-gh-pages",
"postinstall": "cd website && yarn",
"precommit": "lint-staged",
"start": "cd website && npm start",
"test": "eslint . --ext=js.jsx"
}
}