-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 4 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "gmk-perestroika",
"version": "1.1.30",
"main": "index.html",
"repository": "[email protected]:koenoe/gmk-perestroika.git",
"author": "Koen Romers <[email protected]>",
"license": "MIT",
"scripts": {
"add-domain": "echo gmk-perestroika.com > build/CNAME",
"build": "cross-env NODE_ENV=production webpack -p --config ./webpack/config.prod.js",
"build:open": "yarn build && http-server ./build -p 4000 -o",
"clean-dist": "rimraf ./build && mkdir build",
"deploy": "yarn build && yarn add-domain && gh-pages -d build",
"flow": "flow check",
"flow:cover": "flow-coverage-report -i \"src/**/*.js\" --threshold 75",
"lint": "yarn lint:js",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:js": "eslint \"src/**/*.js\"",
"prebuild": "yarn lint && yarn clean-dist",
"serve": "webpack-dev-server --port 3000 --config ./webpack/config.dev.js --log-level error --hot --history-api-fallback --disable-host-check --host 0.0.0.0",
"start": "yarn serve",
"test": "jest --passWithNoTests",
"test:cover": "yarn test --coverage",
"test:coveralls": "yarn test:cover && cat ./coverage/lcov.info | node_modules/coveralls/bin/coveralls.js",
"test:watch": "yarn test --watch"
},
"dependencies": {
"@emotion/core": "10.0.27",
"@emotion/styled": "10.0.27",
"emotion-normalize": "10.1.0",
"emotion-theming": "10.0.27",
"lodash": "4.17.15",
"react": "16.12.0",
"react-cookie": "4.0.3",
"react-dom": "16.12.0",
"react-ga": "2.7.0",
"react-images": "1.1.0-beta.2",
"react-intersection-observer": "8.25.2",
"react-lazyload": "2.6.5",
"react-social-icons": "4.1.0",
"react-transition-group": "4.3.0"
},
"devDependencies": {
"@babel/core": "7.8.3",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.8.3",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-async-to-generator": "7.8.3",
"@babel/plugin-transform-template-literals": "7.8.3",
"@babel/preset-env": "7.8.3",
"@babel/preset-flow": "7.8.3",
"@babel/preset-react": "7.8.3",
"@testing-library/react": "9.4.0",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"babel-plugin-emotion": "10.0.27",
"babel-plugin-lodash": "3.3.4",
"circular-dependency-plugin": "5.2.0",
"clean-webpack-plugin": "3.0.0",
"compression-webpack-plugin": "3.1.0",
"copy-webpack-plugin": "5.1.1",
"coveralls": "3.0.9",
"cross-env": "6.0.3",
"css-loader": "3.4.2",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.9.0",
"eslint-import-resolver-webpack": "0.12.1",
"eslint-plugin-compat": "3.3.0",
"eslint-plugin-flowtype": "4.6.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jest": "23.6.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.18.0",
"eslint-plugin-react-hooks": "2.3.0",
"file-loader": "5.0.2",
"flow-bin": "0.116.1",
"flow-coverage-report": "0.6.1",
"flow-typed": "2.6.2",
"gh-pages": "2.2.0",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"http-server": "0.12.1",
"imports-loader": "0.8.0",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"jest-dom": "4.0.0",
"jest-transform-stub": "2.0.0",
"null-loader": "3.0.0",
"prettier": "1.19.1",
"react-hooks-testing-library": "0.6.0",
"style-loader": "1.1.3",
"stylelint": "13.0.0",
"stylelint-config-css-modules": "2.2.0",
"stylelint-config-recommended": "3.0.0",
"svg-url-loader": "3.0.3",
"terser-webpack-plugin": "2.3.2",
"url-loader": "3.0.0",
"webpack": "4.41.5",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.10.1",
"webpack-hot-middleware": "2.25.0",
"webpack-visualizer-plugin": "0.1.11"
}
}