forked from LifeSG/react-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.9 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.9 KB
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
107
108
109
110
{
"name": "@lifesg/react-design-system",
"version": "1.0.0-alpha.6",
"description": "A component design system for LifeSG web apps",
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run rollup && npm run post:build",
"build-check": "npm run rollup",
"rollup": "rm -rf dist && rollup -c",
"post:build": "node ./scripts/post-build.js",
"publish-lib": "npm publish ./dist",
"start": "rollup -c -w",
"test": "jest --coverage",
"prepare": "(test -d ./.git && npx husky install) || true",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LifeSG/react-design-system.git"
},
"keywords": [
"design-system"
],
"author": "LifeSG",
"license": "ISC",
"bugs": {
"url": "https://github.com/LifeSG/react-design-system/issues"
},
"homepage": "https://github.com/LifeSG/react-design-system#readme",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@govtechsg/sgds-masthead-react": "^0.0.11",
"@react-theming/storybook-addon": "^1.1.7",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@storybook/addon-a11y": "^6.5.10",
"@storybook/addon-actions": "^6.4.20",
"@storybook/addon-essentials": "^6.4.20",
"@storybook/addon-interactions": "^6.4.20",
"@storybook/addon-links": "^6.4.20",
"@storybook/react": "^6.4.20",
"@storybook/testing-library": "0.0.9",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.180",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"babel-loader": "^8.2.4",
"babel-plugin-styled-components": "^2.0.6",
"css-loader": "^5.2.7",
"dayjs": "^1.11.3",
"dompurify": "^2.4.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mdx": "^2.0.4",
"eslint-plugin-react": "^7.29.4",
"html-react-parser": "^2.0.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-canvas-mock": "^2.3.1",
"jest-styled-components": "^7.0.8",
"lint-staged": "^12.3.7",
"lodash": "^4.17.21",
"lottie-react": "^2.3.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^4.2.0",
"prettier": "^2.6.1",
"pretty": "^2.0.0",
"pretty-quick": "^3.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-player": "^2.10.1",
"react-resize-detector": "^7.0.0",
"react-responsive": "^9.0.0-beta.10",
"react-spring": "^9.4.4",
"rollup": "^2.70.1",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"style-loader": "^2.0.0",
"styled-components": "^5.3.5",
"typescript": "^4.8.2"
},
"peerDependencies": {
"react": "^17.0.2 || ^18.0.0",
"react-dom": "^17.0.2 || ^18.0.0",
"styled-components": "^5.3.5"
},
"lint-staged": {
"*.ts{x}": [
"eslint --fix"
]
}
}