generated from martitasea/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.32 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
{
"name": "random-user",
"version": "0.0.1",
"description": "",
"main": "./dist/main.js",
"scripts": {
"test": "karma start karma.config.js",
"start": "webpack serve --env dev --host=0.0.0.0",
"build": "npm test && webpack --env prod",
"storybook": "start-storybook -s ./static -p 6006",
"build-storybook": "build-storybook",
"deploy": "npm run build && gh-pages -d dist",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martitasea/random-user.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/martitasea/random-user/issues"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/react": "^6.3.12",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"chai-enzyme": "^1.0.0-beta.1",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^6.4.0",
"dotenv-webpack": "^7.0.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.2.3",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"karma": "^6.3.6",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"keymirror": "^0.1.1",
"mocha": "^9.1.3",
"pre-commit": "^1.2.2",
"raw-loader": "^4.0.2",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-actions": "^2.6.5",
"redux-devtools-extension": "^2.13.9",
"redux-mock-store": "^1.5.4",
"redux-thunk": "^2.4.0",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"prop-types": "^15.7.2",
"react": "16.14.0",
"react-dom": "16.14.0",
"storybook": "^6.3.12"
}
}