-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·71 lines (71 loc) · 2.1 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
{
"name": "imagine-design-system",
"version": "1.0.4",
"description": "Imagine Design System is a complete set of scalable and reusable web components and patterns.",
"main": "build/index.js",
"module": "build/index.es.js",
"files": [
"build"
],
"scripts": {
"build:publish": "rollup -c && npm publish",
"build": "rollup -c",
"fb:deploy": "build-storybook && firebase deploy && rm -rf storybook-static && rm -rf .firebase",
"sb": "start-storybook -p 6006 --no-manager-cache",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"imagine",
"design system",
"component",
"library"
],
"author": "Ton Tran <dev@imaginedesignsystem.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.10",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@storybook/addon-a11y": "^6.4.13",
"@storybook/addon-essentials": "^6.4.13",
"@storybook/addon-links": "^6.4.13",
"@storybook/addon-notes": "^5.3.21",
"@storybook/react": "^6.4.13",
"@storybook/theming": "^6.4.13",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^11.2.3",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^24.0.24",
"@types/node": "^14.14.31",
"@types/react": "^16.9.12",
"@types/react-dom": "^16.9.8",
"@types/react-router": "^5.1.16",
"@types/react-router-dom": "^5.1.8",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^10.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"node-sass": "^5.0.0",
"postcss": "^8.4.5",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"sass-loader": "^10.1.1",
"storybook-dark-mode": "^1.0.8",
"ts-jest": "^26.4.4",
"tslib": "^2.3.0",
"typescript": "^4.1.3"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1"
}
}