-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.95 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@thepolicylab/design-system",
"version": "0.2.3",
"description": "The Policy Lab Design System",
"repository": {
"type": "git",
"url": "https://github.com/thepolicylab/aurora.git"
},
"license": "MIT",
"author": {
"name": "The Policy Lab",
"email": "[email protected]"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "babel src -d dist --extensions \".js,.jsx,.ts,.tsx\" --ignore \"**/*.test.js\" --ignore \"**/*.stories.js\"",
"build-storybook": "build-storybook",
"eject": "react-scripts eject",
"lint": "yarn lint:js && yarn lint:package",
"lint:js": "cross-env NODE_ENV=production eslint --cache --cache-location=.cache/eslint --ext .js,.jsx,.html,.ts,.tsx,.mjs --report-unused-disable-directives",
"lint:package": "sort-package-json",
"start": "react-scripts start",
"storybook": "start-storybook -s ./src/assets -p 6006",
"test": "jest src"
},
"lint-staged": {
"*.html": [
"yarn lint:js --fix"
],
"*.js": [
"yarn lint:js --fix"
],
"*.ts?(x)": [
"yarn lint:js --fix"
],
"package.json": [
"yarn lint:package"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/babel-preset-css-prop": "^11.0.0",
"@emotion/react": "^11.1.1",
"@emotion/styled": "^11.0.0",
"apexcharts": "^3.22.2",
"d3": "^6.2.0",
"react": "^16.12.0",
"react-apexcharts": "^1.3.7",
"react-dom": "^16.12.0",
"tailwindcss": "^2.0.1",
"twin.macro": "^1.12.1"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@emotion/css": "^11.0.0",
"@loadable/component": "^5.14.1",
"@storybook/addon-actions": "^6.1.1",
"@storybook/addon-controls": "^6.1.10",
"@storybook/addon-essentials": "^6.1.1",
"@storybook/addon-links": "^6.1.1",
"@storybook/eslint-config-storybook": "^2.4.0",
"@storybook/node-logger": "^6.1.1",
"@storybook/preset-create-react-app": "^3.1.5",
"@storybook/react": "^6.1.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/d3": "^6.2.0",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"autoprefixer": "^10.0.2",
"babel-loader": "^8.2.1",
"cross-env": "^7.0.2",
"deepmerge": "^4.2.2",
"eslint": "^7.14.0",
"eslint-plugin-mdx": "^1.8.2",
"jest": "^26.6.3",
"prettier": "2.2.0",
"react-scripts": "4.0.0",
"sort-package-json": "^1.48.0",
"typescript": "^4.1.2"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}