This repository has been archived by the owner on Feb 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.6 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
{
"name": "kazimir-pwa",
"version": "1.0.0",
"description": "Kazimir PWA POC",
"main": "index.js",
"author": "burakukula <[email protected]>",
"license": "MIT",
"scripts": {
"deploy": "yarn build --env.production && node scripts/deploy.js",
"build": "yarn webpack",
"watch": "yarn webpack --watch & yarn run-server",
"run-server": "superstatic --port=3000 --compression --gzip --config=superstatic.json --live",
"js-lint": "yarn eslint src",
"js-typecheck": "yarn flow",
"js-unit": "yarn jest",
"test": "yarn js-lint && yarn js-unit && yarn js-typecheck"
},
"dependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.3.1",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.0-beta.6",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^1.0.0",
"cssnano": "^4.1.10",
"empty": "^0.10.1",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint-plugin-react-hooks": "^1.6.0",
"file-loader": "^2.0.0",
"flow": "^0.2.3",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jest-runner-eslint": "^0.7.4",
"leaflet": "^1.4.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.9.3",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"precss": "^4.0.0",
"prettier": "^1.18.2",
"prettier-eslint": "^8.8.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-leaflet": "^2.7.0",
"react-router-dom": "^5.1.2",
"sass-lint": "^1.12.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"superstatic": "^6.0.4",
"svg-sprite-loader": "^4.1.3",
"url-loader": "^1.1.2",
"webpack": "^4.20.2",
"workbox-webpack-plugin": "^4.2.0"
},
"devDependencies": {
"copy-webpack-plugin": "^4.6.0",
"eslint": "^5.12.1",
"eslint-config-brainly-react": "^2.7.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-json": "^1.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.0",
"flow-bin": "^0.101.1",
"flow-typed": "^2.5.2",
"ftp-deploy": "^2.3.3",
"postcss-loader": "^3.0.0",
"postcss-modules-values": "^3.0.0",
"webpack-cli": "^3.1.1"
}
}