generated from louisgv/lrct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.65 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
{
"name": "@roshub/design-system",
"version": "0.0.0",
"homepage": "https://design.roshub.io/",
"repository": "roshub/design-system",
"publishConfig": {
"registry": "http://npm.roshub.io"
},
"files": [
"dist"
],
"license": "UNLICENSED",
"scripts": {
"postinstall": "yarn dist",
"predeploy": "yarn build:clean && yarn build",
"version": "npx auto-changelog -p && git add CHANGELOG.md",
"deploy": "npx gh-pages -d build",
"start": "start-storybook -c .storybook -s public -p 9009",
"build": "build-storybook -o build -s public",
"build:clean": "npx rimraf ./build",
"copy:type": "cpy src/typings dist/typings",
"watch": "yarn dist:clean && run-p watch:*",
"watch:dev": "npx cross-env NODE_ENV=development babel src -w -d dist -s --extensions .tsx --ignore 'src/**/*.stories.tsx'",
"watch:type": "yarn copy:type && tsc -w -p tsconfig.prod.json",
"dist": "run-s dist:*",
"dist:clean": "npx rimraf ./dist",
"dist:type": "yarn copy:type && tsc -p tsconfig.prod.json",
"dist:prod": "npx cross-env NODE_ENV=production babel src -d dist -s --extensions .tsx --ignore 'src/**/*.stories.tsx'"
},
"eslintConfig": {
"extends": "react-app"
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0",
"styled-components": ">= 4",
"styled-system": "^5.1.2"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@storybook/addon-a11y": "^5.2.0",
"@storybook/addon-actions": "^5.2.0",
"@storybook/addon-knobs": "^5.2.0",
"@storybook/addon-links": "^5.2.0",
"@storybook/addon-storysource": "^5.2.0",
"@storybook/addons": "^5.2.0",
"@storybook/react": "^5.2.0",
"@types/jest": "24.0.18",
"@types/node": "12.7.5",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/storybook__react": "^4.0.2",
"@types/styled-components": "^4.1.19",
"babel-loader": "^8.0.6",
"cpy-cli": "^2.0.0",
"npm-run-all": "^4.1.5",
"react": "^16.9.0",
"react-docgen-typescript-loader": "^3.2.0",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-dom": "^16.9.0",
"react-scripts": "^3.1.1",
"storybook-styled-components": "^1.1.4",
"styled-components": "^4.3.2",
"styled-system": "^5.1.2",
"typescript": "3.6.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babelMacros": {
"styledComponents": {
"pure": true
}
},
"dependencies": {
"react-spring": "^9.0.0-beta.34"
}
}