-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 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
82
83
84
85
86
87
88
89
90
{
"name": "trhc-design-system",
"version": "1.0.9",
"description": "TRHC Design System",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run icons && babel src -d dist --ignore __tests__",
"precommit": "lint-staged",
"start": "start-storybook -p 8000 -c .storybook",
"icons": "node scripts/parse-icons",
"deploy": "storybook-to-ghpages",
"storybook": "build-storybook -c .storybook -o docs/out/storybook",
"coverage": "jest --coverage",
"codecov": "codecov",
"chromatic": "chromatic test --exit-zero-on-changes --storybook-addon --script-name start",
"standard": "standard",
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"@storybook/addon-info": "^3.2.0",
"@storybook/react": "^3.2.3",
"@storybook/storybook-deployer": "^2.0.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"camelcase": "^4.1.0",
"codecov": "^3.1.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"jest-dom": "^3.0.0",
"jest-styled-components": "^5.0.1",
"lint-staged": "^4.2.3",
"prettier": "^1.7.4",
"react": "^16.6.3",
"react-chromatic": "^0.7.10",
"react-dom": "^16.6.3",
"react-test-renderer": "^15.6.1",
"react-testing-library": "^5.4.0",
"recompose": "^0.30.0",
"styled-components": "^4.1.3",
"stylis": "^3.4.9",
"svgi": "^1.1.0"
},
"jest": {
"coverageReporters": [
"text",
"lcov",
"html"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"dist/"
],
"setupTestFrameworkScriptFile": "./test-setup.js"
},
"dependencies": {
"clean-element": "^1.0.2",
"prop-types": "^15.5.10",
"rc-slider": "^8.5.0",
"styled-system": "^2.3.6"
},
"peerDependencies": {
"styled-components": ">=2.0.0 || >=3.0.0 || >=4.0.0"
},
"standard": {
"globals": [
"describe",
"test",
"expect"
]
},
"lint-staged": {
"*.js": [
"prettier --no-semi --single-quote --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrs-innovation-center/design-system.git"
},
"bugs": {
"url": "https://github.com/jrs-innovation-center/design-system/issues"
},
"homepage": "https://github.com/jrs-innovation-center/design-system#readme"
}