-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.15 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.15 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
{
"name": "torus-center",
"version": "1.0.0",
"description": "torus center react application",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config=config/webpack.dev.js --hot",
"start:reload": "webpack-dev-server --config=config/webpack.dev.js",
"build": "webpack --config=config/webpack.prod.js",
"test": "webpack --config=config/webpack.test.js",
"lint": "eslint . --cache && echo \"eslint: no lint errors\"",
"icon": "svgr src/assets/icons -d src/icons --icon",
"storybook": "start-storybook -p 6006"
},
"author": "mobven",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"lodash": "^4.17.19",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-form": "^6.3.3",
"react-router-dom": "^5.2.0",
"styled-components": "^5.1.1",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@storybook/addon-essentials": "^6.0.12",
"@storybook/addon-storysource": "^6.0.12",
"@storybook/addons": "^6.0.12",
"@storybook/react": "^6.0.12",
"@svgr/cli": "^5.4.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"css-loader": "^4.2.1",
"dotenv-webpack": "^2.0.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.10.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"sass-loader": "^9.0.3",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-manifest-plugin": "^2.2.0",
"webpack-merge": "^5.1.1"
}
}