-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.5 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
{
"name": "stack-salaries",
"version": "1.0.2",
"description": "",
"main": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"convert": "webpack",
"compile-routes": "babel ./client/src/router.js --out-file ./client/src/router-c.js --presets=es2015,react --ignore=node_modules,compiled --source-maps inline",
"compile-server": "babel ./server/server.js --out-file ./server/server-c.js --presets=es2015,react --ignore=node_modules,compiled --source-maps inline",
"dev": "open 'http://localhost:8080/webpack-dev-server/#/'; webpack-dev-server --content-base ./client/compiled/",
"live": "nodemon ./server/server-c.js",
"start": "npm run compile-server && npm run convert && npm run live",
"quick": "npm run convert && npm run live"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"react-addons-test-utils": "^0.14.7",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"babel-preset-stage-1": "^6.1.18",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"cors": "^2.7.1",
"d3": "^3.5.17",
"express": "^4.14.0",
"express-passport-logout": "^0.1.0",
"history": "^1.17.0",
"jquery": "^2.2.1",
"jquery-xml2json": "0.0.8",
"json-loader": "^0.5.4",
"jwt-simple": "^0.5.0",
"lodash": "^3.10.1",
"mongoose": "^4.5.3",
"mongoose-sequence": "^3.0.2",
"morgan": "^1.7.0",
"node-notifier": "^4.2.1",
"nodemon": "^1.9.2",
"passport": "^0.3.2",
"passport-github": "^1.1.0",
"passport-jwt": "^2.1.0",
"passport-local": "^1.0.0",
"react": "^0.14.3",
"react-d3-wrap": "^2.1.2",
"react-dom": "^0.14.3",
"react-redux": "^4.0.0",
"react-router": "^2.0.1",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-store": "0.0.0",
"redux-thunk": "^2.1.0",
"webpack": "^1.13.1",
"xml2js": "^0.4.17",
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"react-addons-test-utils": "^0.14.7",
"webpack-dev-server": "^1.14.0"
}
}