-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.38 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.38 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
{
"name": "folx",
"version": "1.0.0",
"description": "olx remastered",
"main": "index.js",
"scripts": {
"start": "node ./backend/index.js",
"start-w": "nodemon ./backend/index.js",
"heroku-postbuild": "nyc _mocha ./test/index.js && webpack",
"build": "webpack",
"test": "mocha ./test/index.js",
"code-coverage": "nyc _mocha ./test/index.js"
},
"author": "sideroff",
"homepage": "https://github.com/sideroff/folx#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sideroff/folx.git"
},
"bugs": {
"url": "https://github.com/sideroff/folx/issues"
},
"license": "ISC",
"dependencies": {
"moment": "^2.22.1",
"mongodb": "^3.0.4",
"mongoose": "^5.0.9",
"redis": "^2.8.0",
"uuid-v4": "^0.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.10",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"mocha": "^5.0.4",
"node-sass": "^4.7.2",
"nodemon": "^1.17.1",
"nyc": "^11.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.10"
}
}