forked from maci-kb24/onehouraday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.2 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
{
"name": "onehouraday",
"version": "1.0.0",
"description": "Community that expose social projects and people can spend one hour to help a social cause",
"main": "server.js",
"scripts": {
"start": "node server/index.js",
"build": "npm run clean && npm run build-client",
"build-client": "webpack --mode production --config webpack.config.js",
"clean": "rimraf dist/",
"lint": "npm run lint:*",
"lint:client": "eslint client/",
"lint:server": "eslint server/",
"watch:client": "webpack-dev-server",
"watch:server": "nodemon server/index.js --ignore client/ --ignore dist/",
"test": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/1hour1day/onehouraday.git"
},
"author": "jawadaz",
"license": "ISC",
"bugs": {
"url": "https://github.com/1hour1day/onehouraday/issues"
},
"homepage": "https://github.com/1hour1day/onehouraday#readme",
"dependencies": {
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"classnames": "^2.2.5",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"jss-react-material": "^0.1.8",
"material-ui": "^1.0.0-beta.38",
"mongoose": "^4.13.12",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"validator": "^9.4.1"
},
"devDependencies": {
"autoprefixer": "^8.2.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.1.0",
"nodemon": "^1.17.2",
"postcss-loader": "^2.1.3",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.2",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1"
}
}