-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.73 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
{
"name": "danielkosharek.com",
"version": "1.0.0",
"description": "A gallery of Daniel Kosharek's paintings",
"main": "server/index__server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-dev": "node ./server/index__server.js",
"build-prod": "webpack -p --config webpack.prod.config",
"build-dev": "webpack -w -d --config webpack.dev.config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakubsvec001/danielkosharek.com.git"
},
"keywords": [
"art gallery"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakubsvec001/danielkosharek.com/issues"
},
"homepage": "https://github.com/jakubsvec001/danielkosharek.com#readme",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-loader": "^8.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"uglifyjs-webpack-plugin": "^1.1.2",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"express": "^4.17.1",
"react": "^16.13.1",
"react-container-dimensions": "^1.4.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-image-zoom": "^1.3.1",
"react-router-dom": "^5.2.0",
"styled-components": "^5.1.1",
"webpack-bundle-analyzer": "^4.1.0"
}
}