-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.51 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
{
"name": "windfarm-css",
"version": "1.0.4",
"description": "A system for implementing design systems in component libraries",
"main": "lib/index.js",
"module": "lib/index.js",
"files": [
"lib/**"
],
"author": "Luke Barnard",
"license": "MIT",
"browserslist": "> 0.25%, not dead",
"dependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@mdx-js/react": "^1.6.22",
"babel-loader": "^8.3.0",
"emotion": "^10.0.27",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^16.13.1"
},
"scripts": {
"build": "babel . --out-dir lib --config-file ./babel.config.json --ignore node_modules,lib",
"test": "jest",
"storybook": "start-storybook -p 6006 -c example/.storybook",
"build-storybook": "build-storybook -c example/.storybook --debug-webpack"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-docs": "^6.5.15",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-interactions": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/builder-webpack4": "^6.5.15",
"@storybook/manager-webpack4": "^6.5.15",
"@storybook/react": "^6.5.15",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"babel-jest": "^29.3.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"react-test-renderer": "^18.2.0"
}
}