forked from lugia-ysstech/lugiax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.41 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
{
"author": "ysstech",
"scripts": {
"bootstrap": "lerna bootstrap",
"start": "node ./scripts/build.js --watch",
"build": "node ./scripts/build.js",
"new": "node ./scripts/new.js",
"changelog": "lerna-changelog",
"lerna": "lerna",
"test": "jest --config=jest.config.js --env=jsdom --watch",
"coverage": "jest --config=jest.config.js --env=jsdom --coverage --all",
"prettier": "prettier --trailing-comma all --single-quote --write",
"postinstall": "yarn bootstrap",
"stylelint": "stylelint",
"lint": "eslint --ext .js packages scripts",
"lint:fix": "eslint --fix --ext .js packages scripts",
"publish": "node ./scripts/publish.js"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@lugia/jverify": "^1.0.7",
"@lugia/mega": "^1.3.44",
"@lugia/mega-jest": "^1.2.27",
"@lugia/react-devtools-core": "^1.0.1",
"@lugia/react-test-utils": "^1.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-add-module-exports": "^1.0.2",
"chokidar": "^2.1.6",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"flow-bin": "^0.99.1",
"husky": "^2.3.0",
"jest": "^24.8.0",
"jest-styled-components": "^6.3.1",
"lerna": "^3.14.1",
"lerna-changelog": "^0.8.2",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.3",
"shelljs": "^0.8.3",
"slash": "^3.0.0",
"styled-components": "^4.2.0",
"stylelint": "^10.0.1",
"stylelint-config-standard": "^18.3.0",
"terser": "^3.17.0",
"through2": "^3.0.1",
"vinyl-fs": "^3.0.3"
},
"lint-staged": {
"*.js": [
"prettier",
"lint:fix",
"lint",
"git add"
]
},
"dependencies": {
"flow-bin": "^0.76.0"
},
"babel": {
"presets": [
"react-app"
]
}
}