-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.96 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.96 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
56
57
58
{
"name": "logento-front",
"version": "1.0.0",
"description": "Rental comparison App",
"main": "index.js",
"repository": "git@github.com:icewassim/logentoo-front.git",
"scripts": {
"start": "parallelshell \"npm run webpack-back\" \"npm run nodemon\" \"npm run webpack-front\"",
"webpack-front": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --config ./webpack.config.front.js --hot --port 8080",
"webpack-back": "node ./node_modules/webpack/bin/webpack.js --config ./webpack.config.back.js --progress --watch",
"nodemon": "nodemon bin/server.js --watch bin/server.js",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch"
},
"author": "icewassim",
"license": "",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"chai": "^3.5.0",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jquery": "^3.0.0",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"nodemon": "^1.14.11",
"parallelshell": "^3.0.2",
"react-addons-test-utils": "^0.14.7",
"webpack": "^1.12.9",
"babel-eslint": "^8.2.1",
"babel-preset-stage-1": "^6.1.18",
"compression-webpack-plugin": "^1.1.3",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"axios": "^0.17.1",
"bunyan": "^1.8.12",
"bunyan-winston-adapter": "^0.2.0",
"lodash": "^3.10.1",
"mongoose": "^5.0.1",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-infinite-scroller": "^1.1.3",
"react-redux": "4.3.0",
"react-router": "^2.0.1",
"react-router-dom": "^4.2.2",
"redux": "^3.0.4",
"redux-promise": "^0.5.3",
"restify": "^4.3.0",
"restify-errors": "^4.3.0",
"winston": "^2.4.0"
}
}