-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·55 lines (55 loc) · 1.55 KB
/
package.json
File metadata and controls
executable file
·55 lines (55 loc) · 1.55 KB
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
{
"name": "divar",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build-css": "node-sass src/styles -o src/styles",
"watch-css": "npm run build-css && node-sass src/styles -o src/styles --watch --recursive",
"start": "razzle start",
"start-js": "razzle start",
"dev": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && razzle build",
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"dependencies": {
"axios": "^0.16.2",
"google-map-react": "^0.24.0",
"history": "^4.6.3",
"jalali-moment": "^2.1.5",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"qs": "^6.5.0",
"razzle": "^0.7.1",
"react": "^15.6.1",
"react-code-splitting": "^1.1.1",
"react-dom": "^15.6.1",
"react-dropzone": "^3.13.3",
"react-helmet": "^5.1.3",
"react-no-ssr": "^1.1.0",
"react-persian": "^1.1.1",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"react-router-redux": "next",
"react-sticky": "^6.0.1",
"redux": "^3.7.1",
"redux-form": "^6.8.0",
"redux-thunk": "^2.2.0",
"semantic-ui-css": "^2.2.10",
"semantic-ui-react": "^0.71.0",
"serialize-javascript": "^1.3.0",
"universal-cookie": "^2.0.8",
"validatorjs": "^3.13.3"
},
"devDependencies": {
"eslint": "^4.3.0",
"eslint-plugin-react": "^7.1.0",
"node-sass": "^4.5.3",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.0.2",
"redux-devtools-extension": "^2.13.2"
},
"engines": {
"node": ">=7.0.0"
}
}