-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.67 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
{
"name": "coral-system",
"version": "1.0.6",
"description": "a lightweight style system with react ui primitives",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"preversion": "yarn build",
"prepublishOnly": "yarn clean && yarn build",
"up": "yarn upgrade-interactive --latest",
"start": "start-storybook -p 8008",
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc --project tsconfig.prod.json --outDir dist/esm/ --module ES2015",
"build:cjs": "tsc --project tsconfig.prod.json --outDir dist/cjs/ --module CommonJS",
"clean": "rimraf dist/",
"release": "np",
"story:build": "build-storybook --docs",
"story:deploy": "storybook-to-ghpages -s story:build -o storybook-static"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wwsun/coral-system.git"
},
"keywords": [
"react",
"styled-system"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/wwsun/coral-system/issues"
},
"homepage": "https://github.com/wwsun/coral-system#readme",
"peerDependencies": {
"react": ">= 16.8",
"styled-components": ">= 4.x"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.2.0",
"@emotion/memoize": "^0.8.0",
"csstype": "^3.1.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.17.12",
"@storybook/addon-docs": "^6.5.16",
"@storybook/addon-storysource": "^6.5.16",
"@storybook/addons": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/storybook-deployer": "^2.8.16",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"antd": "^4.23.3",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-react": "1.1.7",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-testing-library": "^5.10.1",
"np": "^7.6.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook-addon-outline": "^1.4.2",
"styled-components": "^5.3.6",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.9.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"storybook-deployer": {
"gitUsername": "wwsun",
"gitEmail": "[email protected]",
"commitMessage": "Deploy Storybook to GitHub Pages"
}
}