This repository has been archived by the owner on Mar 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
62 lines (62 loc) · 1.84 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
{
"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",
"predeploy": "yarn website:build",
"deploy": "gh-pages -d packages/react-impression-website/dist",
"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",
"gh-pages": "^3.2.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"
]
},
"dependencies": {
"@emotion/is-prop-valid": "^0.8.8"
},
"version": "3.1.3"
}