-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
{
"name": "divar-starter-kit",
"version": "1.0.0",
"license": "MIT",
"description": "SSR-ready react boilerplate 🚀.",
"author": "Divar Front-End Chapter",
"scripts": {
"start": "razzle start",
"build": "razzle build",
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js",
"lint": "yarn lint:script && yarn lint:style",
"lint:script": "eslint --ext .jsx,.js src/",
"lint:style": "stylelint 'src/**/*.scss'"
},
"dependencies": {
"axios": "^0.19.2",
"express": "^4.17.1",
"lodash.clonedeep": "^4.5.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-redux": "^7.1.3",
"react-router": "^5.1.2",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-import-resolver-webpack": "^0.12.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^4.0.7",
"handlebars": "^4.7.0",
"handlebars-loader": "^1.7.1",
"normalize.css": "^8.0.1",
"razzle": "^3.1.3",
"razzle-dev-utils": "^3.1.3",
"razzle-plugin-scss": "^3.1.5"
}
}