-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.62 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.62 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
{
"name": "@eqworks/react-schedule",
"private": false,
"version": "1.1.0",
"main": "dist/index.js",
"source": "src/index.js",
"files": [
"dist",
"README.md"
],
"repository": "git@github.com:EQWorks/react-schedule.git",
"author": "EQ Devs <dev@eqworks.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/addons": "^6.4.9",
"@storybook/react": "^6.4.9",
"@storybook/storybook-deployer": "^2.8.1",
"babel-loader": "^8.0.6",
"chromatic": "^6.2.3",
"eslint": "^8.5.0",
"eslint-plugin-react": "^7.14.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.4"
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.0"
},
"dependencies": {
"@material-ui/styles": "^4.3.3",
"classnames": "^2.2.6",
"immer": "^9.0.7"
},
"scripts": {
"test": "echo 'No test yet!'",
"start": "yarn storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "eslint src stories",
"deploy-storybook": "storybook-to-ghpages --ci",
"build": "rimraf dist && babel src --out-dir dist --copy-files",
"prepublishOnly": "yarn eslint src/ && yarn test && yarn build",
"chromatic": "npx chromatic"
},
"engines": {
"node": ">=12.0.0"
}
}