-
Notifications
You must be signed in to change notification settings - Fork 205
/
package.json
89 lines (89 loc) · 2.78 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
{
"name": "Omatsuri",
"version": "1.0.0",
"description": "Open source frontend focused tools",
"repository": "https://github.com/rtivital/tools.git",
"author": "Vitaly Rtishchev <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "npm run clean && webpack-dev-server",
"build": "npm run clean && cross-env NODE_ENV=production webpack --progress",
"clean": "rimraf ./dist",
"deploy": "npm run build && gh-pages -d dist",
"lint": "eslint src --ext jsx --ext js",
"serve": "npm run build && http-server dist -p 6002",
"analyze": "npm run build -- --analyze"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@rtivital/eslint-config": "1.0.1",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"cname-webpack-plugin": "^2.0.1",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"favicons-webpack-plugin": "^4.2.0",
"file-loader": "^6.1.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.4.1",
"http-server": "^0.12.3",
"less": "^3.12.2",
"less-loader": "^7.0.1",
"mini-css-extract-plugin": "^0.11.2",
"open-browser-webpack-plugin": "^0.0.5",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss": "^7.0.32",
"postcss-loader": "^4.0.1",
"rimraf": "^3.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.2.0",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"worker-loader": "^3.0.2",
"yargs": "^16.0.3"
},
"dependencies": {
"classnames": "^2.2.6",
"color": "^3.1.2",
"faker": "^4.1.0",
"fuse.js": "^6.4.1",
"lorem-ipsum": "^2.0.3",
"normalize.css": "^8.0.1",
"offline-plugin": "^5.0.7",
"open-color": "^1.7.0",
"pokeipsum": "^1.1.0",
"prettier": "^2.1.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-colorful": "^4.0.4",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21",
"react-router-dom": "^5.2.0",
"samuel-ipsum": "^1.0.11",
"svg-to-jsx": "^1.0.2",
"svgo-browser": "^1.3.7",
"uuid": "^8.3.0",
"xooks": "^2.2.6"
}
}