forked from wonky-mongoose/wonky-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.73 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.73 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "memowise",
"version": "0.5.2",
"description": "",
"scripts": {
"clean": "rm -rf dev dist",
"build": "npm run build-server-prod && npm run build-client-prod",
"build-client-prod": "HOST=127.0.0.1 PORT=3333 PROTOCOL=http NODE_ENV=production webpack --progress",
"build-server-prod": "babel src/server -d dist/server",
"watch-client": "webpack --progress --watch",
"watch-server": "babel --watch src/server -d dev/server",
"server-dev": "nodemon dev/server/server.js",
"server-prod": "HOST=127.0.0.1 PORT=3333 PROTOCOL=http NODE_ENV=production node dist/server/server.js",
"deploy:prod": "pm2 deploy ecosystem.json production",
"import": "node bin/deck-import.js documentation/decks/",
"import:all": "for deck in documentation/decks/*.md; do node bin/deck-import.js $deck ''; done",
"lint": "eslint src --color",
"mocha": "mocha --compilers js:babel-register --bail --recursive ./specs/client ./specs/server",
"test": "npm run lint && nyc --require babel-core/register npm run mocha",
"coverage": "nyc report --reporter=html && open ./coverage/index.html"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.8.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"fs": "0.0.2",
"isomorphic-fetch": "^2.2.1",
"json-loader": "^0.5.4",
"mocha": "^2.4.5",
"mongodb": "^2.1.20",
"nock": "^8.0.0",
"node-sass": "^3.7.0",
"nodemon": "^1.9.2",
"nyc": "^6.4.4",
"redux-mock-store": "^1.0.4",
"sass-loader": "^3.2.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-stream": "^3.2.0",
"supertest": "^1.2.0"
},
"dependencies": {
"babel-cli": "^6.9.0",
"bcrypt": "^0.8.6",
"bluebird": "^3.4.0",
"body-parser": "^1.15.1",
"connect-mongo": "^1.2.0",
"cookie-parser": "^1.4.3",
"cors": "^2.7.1",
"express": "^4.13.4",
"express-session": "^1.13.0",
"jquery": "^2.2.4",
"lodash": "^4.13.1",
"moment": "^2.13.0",
"mongoose": "^4.4.19",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-markdown": "^2.2.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.4",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
},
"nyc": {
"include": [
"src/**/*.js"
]
}
}