This repository has been archived by the owner on Apr 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.43 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "documents-app",
"version": "1.0.0",
"description": "Document Management App",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "webpack -p --config webpack.prod.config.js",
"heroku-postbuild": "npm run build",
"start": "node index.js",
"start-dev": "nodemon -w server -w index.js -w webpack.base.config.js -w webpack.dev.config.js index.js",
"lint": "eslint client server index.js --fix",
"mocha": "NODE_ENV=testing mocha --compilers js:babel-core/register --recursive --require tests/client/setup",
"istanbul": "NODE_ENV=testing babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- --compilers js:babel-core/register --recursive --require tests/client/setup",
"test": "npm run istanbul -- \"tests/**/*[Ss]pec.js\"",
"test-server": "npm run mocha -- \"tests/server/**/*[Ss]pec.js\"",
"test-client": "npm run mocha -- \"tests/client/**/*[Ss]pec.js\"",
"test-client-watch": "npm run test-client -- --watch",
"cover-server": "npm run istanbul -- \"tests/server/**/*[Ss]pec.js\"",
"cover-client": "npm run istanbul -- \"tests/client/**/*[Ss]pec.js\"",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
"codecov": "cat coverage/lcov.info | codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thuo/documents-app.git"
},
"author": "Humphrey Thuo",
"license": "MIT",
"bugs": {
"url": "https://github.com/thuo/documents-app/issues"
},
"homepage": "https://github.com/thuo/documents-app#readme",
"dependencies": {
"bcrypt": "^0.8.7",
"body-parser": "^1.15.1",
"express": "^4.13.4",
"humps": "^1.1.0",
"jsonwebtoken": "^7.0.1",
"lodash": "^4.14.1",
"marked": "^0.3.6",
"mongoose": "^4.5.0",
"mongoose-deep-populate": "^3.0.0",
"morgan": "^1.7.0",
"normalizr": "^2.2.1",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-mdl": "^1.6.1",
"react-redux": "^4.4.5",
"react-router": "^2.6.0",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"superagent": "^2.1.0"
},
"devDependencies": {
"async": "^2.0.0-rc.6",
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-istanbul": "^0.11.0",
"babel-loader": "^6.2.4",
"babel-plugin-rewire": "^1.0.0-rc-5",
"babel-plugin-webpack-alias": "^1.3.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.3.3",
"codecov.io": "^0.1.6",
"css-loader": "^0.23.1",
"enzyme": "^2.4.1",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-import-resolver-webpack": "^0.4.0",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"istanbul": "^0.4.4",
"jsdom": "^9.4.1",
"mocha": "^2.5.3",
"nodemon": "^1.9.2",
"react-addons-test-utils": "^15.2.1",
"react-hot-loader": "^1.3.0",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.11",
"redux-logger": "^2.6.1",
"redux-mock-store": "^1.1.2",
"sinon": "^1.17.5",
"style-loader": "^0.13.1",
"superagent-mocker": "^0.4.0",
"supertest": "^1.2.0",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.1"
},
"engines": {
"node": "6",
"npm": "5"
}
}