forked from priceline/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.06 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
{
"private": true,
"scripts": {
"precommit": "lint-staged",
"prepare": "lerna bootstrap --hoist",
"clean": "lerna run clean",
"changed": "lerna changed",
"diff": "lerna diff",
"publish": "lerna publish",
"test": "jest",
"coverage": "jest --coverage",
"codecov": "npx codecov",
"start": "start-storybook -p 8000 -c storybook",
"storybook": "build-storybook -c storybook -o docs/out/storybook"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^4.1.11",
"@storybook/addon-info": "^4.1.11",
"@storybook/react": "^4.1.11",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.5",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"husky": "^0.14.3",
"jest": "^24.1.0",
"jest-styled-components": "^6.2.1",
"lerna": "^3.13.0",
"lint-staged": "^4.2.3",
"prettier": "^1.16.4",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-testing-library": "^5.2.3",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-babel-runtime-external": "^2.0.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-filesize": "^5.0.1",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"styled-components": "^3.4.10"
},
"jest": {
"setupTestFrameworkScriptFile": "./test-setup.js",
"coverageReporters": [
"lcov",
"html"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"dist"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"testMatch": [
"<rootDir>/packages/**/test/**/*.js"
]
},
"lint-staged": {
"*.{js,md}": [
"prettier --no-semi --single-quote --write",
"git add"
]
}
}