forked from NewDadaFE/react-impression
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.62 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "yarn website:start",
"website:start": "yarn workspace react-impression-website start",
"website:build": "yarn workspace react-impression-website build",
"examples:start": "yarn workspace react-impression-examples start",
"examples:build": "yarn workspace react-impression-examples build",
"precommit": "lint-staged",
"format": "find . -name '*.js' -o -name '*.md' -o -name '*.scss' | grep -v -f .gitignore | xargs prettier-standard"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/plugin-transform-react-constant-elements": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-plugin-ramda": "^1.6.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.15",
"fs-extra": "^7.0.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"node-fetch": "^2.2.0",
"prettier-standard": "^8.0.1"
},
"eslintConfig": {
"rules": {
"space-before-function-paren": [
"error",
{
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}
],
"comma-dangle": [
"error",
"always-multiline"
]
}
},
"lint-staged": {
"*.{js,md}": [
"prettier-standard",
"git add"
]
}
}