-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.71 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
{
"name": "goremykina",
"version": "1.0.0",
"description": "Irina Goremykina - Personal Web Site",
"repository": "[email protected]:exah/goremykina.git",
"author": "John Grishin <[email protected]>",
"license": "MIT",
"private": true,
"sideEffects": false,
"scripts": {
"start": "cross-env NODE_ENV=production node server",
"build": "cross-env NODE_ENV=production webpack-cli",
"dev": "nodemon -w server server",
"prebuild": "rimraf dist",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": "eslint"
},
"eslintConfig": {
"extends": [
"standard",
"standard-react",
"prettier"
],
"plugins": [
"prettier"
],
"parser": "babel-eslint",
"rules": {
"prettier/prettier": 2,
"react/prop-types": 0,
"react/jsx-curly-newline": 0,
"no-irregular-whitespace": 0,
"no-shadow": 2
}
},
"browserslist": "> 1%, iOS 10",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-emotion": "^10.0.33",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@babel/runtime": "^7.9.6",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@exah/webpack-universal-hot-middleware": "^1.1.2",
"animejs": "^3.2.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"config": "^3.3.1",
"cross-env": "^7.0.2",
"embla-carousel": "^2.9.1",
"express": "^4.17.1",
"express-request-language": "^1.1.15",
"history": "^4.10.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"ms": "^2.1.2",
"node-fetch": "^2.6.0",
"pepjs": "^0.5.2",
"prop-types": "^15.7.2",
"pss-components": "^5.0.3",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-flip-toolkit": "4",
"react-helmet-async": "^1.0.6",
"react-router": "^5.2.0",
"react-transition-group": "^4.4.1",
"react-universal-data": "^4.1.2",
"rimraf": "^3.0.2",
"stats-webpack-plugin": "^0.7.0",
"ya-fetch": "^1.3.0"
}
}