-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
128 lines (128 loc) · 3.94 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@vital-ui/react-root",
"description": "Vital UI Kit React",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"reset": "rm -rf node_modules/ yarn.lock packages/*/node_modules",
"clean-all": "yarn cache clean && yarn run reset && yarn run clean:build",
"bootstrap": "lerna bootstrap && yarn run build",
"clean:build": "lerna run clean --stream",
"build": "lerna run compile --stream",
"prebuild": "yarn clean:build",
"watch": "cross-env NODE_ENV=development lerna run watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -c .storybook -o docs",
"lint": "tslint -c tslint.json './**/*.{ts,tsx}'",
"test": "NODE_ENV=test jest",
"format": "prettier --write '**/**.{js,jsx,ts,tsx}'",
"changelog": "lerna-changelog",
"publish": "lerna publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSS-FED/vital-ui-kit-react.git"
},
"contributors": [
"Eric Yip (https://github.com/ericyip)",
"Laura Lee (https://github.com/l443018)",
"ChiFeng (https://github.com/ga021396)",
"Ryan Chu (https://github.com/jj811208)",
"CJies Tan (https://github.com/cjies)"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/plugin-external-helpers": "7.10.1",
"@babel/plugin-proposal-class-properties": "7.10.1",
"@babel/plugin-proposal-object-rest-spread": "7.10.1",
"@babel/plugin-transform-runtime": "7.10.1",
"@babel/preset-env": "7.10.2",
"@babel/preset-react": "7.10.1",
"@babel/preset-typescript": "7.10.1",
"@babel/register": "7.10.1",
"@storybook/addon-actions": "5.3.19",
"@storybook/addon-centered": "5.3.19",
"@storybook/addon-info": "5.3.19",
"@storybook/addon-knobs": "5.3.19",
"@storybook/addon-links": "5.3.19",
"@storybook/addon-notes": "5.3.19",
"@storybook/addon-options": "5.3.19",
"@storybook/addon-storyshots": "5.3.19",
"@storybook/addon-storysource": "5.3.19",
"@storybook/addons": "5.3.19",
"@storybook/react": "5.3.19",
"@storybook/theming": "5.3.19",
"@svgr/cli": "5.4.0",
"@testing-library/react": "10.2.1",
"@types/classnames": "2.2.11",
"@types/jest": "26.0.24",
"@types/react": "16.14.2",
"@types/react-dom": "16.9.10",
"@types/react-is": "16.7.1",
"@types/styled-components": "5.1.7",
"@types/styled-system": "5.1.9",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "26.6.3",
"babel-loader": "8.1.0",
"babel-plugin-styled-components": "1.13.3",
"circular-dependency-plugin": "5.2.0",
"copyfiles": "2.3.0",
"cross-env": "7.0.2",
"faker": "4.1.0",
"husky": "4.2.5",
"identity-obj-proxy": "3.0.0",
"jest": "26.6.3",
"jest-specific-snapshot": "3.0.0",
"jest-styled-components": "7.0.3",
"lerna": "3.22.1",
"lerna-changelog": "1.0.1",
"less": "^4.1.0",
"less-loader": "^7.2.1",
"lint-staged": "10.2.9",
"markdown-loader-jest": "0.1.1",
"prettier": "2.0.5",
"react": "^16.13.1",
"react-docgen-typescript-loader": "3.7.2",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rimraf": "3.0.2",
"rollup": "^2.36.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"rxjs": "6.5.5",
"storybook-styled-components": "1.1.4",
"styled-components": "5.2.1",
"ts-jest": "26.1.0",
"ts-loader": "7.0.5",
"tsc-watch": "4.2.8",
"tsconfig-paths-webpack-plugin": "3.2.0",
"tslib": "^2.1.0",
"tslint": "6.1.2",
"tslint-config-prettier": "1.18.0",
"tslint-react": "4.1.0",
"typescript": "3.9.7"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"tslint -c tslint.json --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}