-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2.27 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
{
"name": "react-pathways",
"version": "1.0.0",
"description": "A minimalist latest version react, react-router, redux and auth plus node static and api server skeleton, an exploration for personal use",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=production node server.js",
"server-dev": "NODE_ENV=production nodemon --watch serv server.js",
"dev": "NODE_ENV=development node server.js",
"build": "npm-run-all clean -s build-css build-js",
"build-css": "node-sass --output-style compressed app/styles/main.scss public/css/main.css",
"build-js": "browserify app/main.js -t babelify --debug --outfile public/js/bundle.js",
"watch": "npm-run-all -p watch-css watch-js",
"watch-js": "watchify app/main.js -t babelify --outfile public/js/bundle.js -v",
"watch-css": "node-sass -w --output-style compressed app/styles/main.scss public/css/main.css",
"clean": "npm-run-all -s cleanjs cleancss -c --silent",
"cleanjs": "rm public/js/bundle.js",
"cleancss": "rm public/css/main.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awebfactory/react-pathways.git"
},
"keywords": [],
"author": "Victor Kane",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/awebfactory/react-pathways/issues"
},
"homepage": "https://github.com/awebfactory/react-pathways#readme",
"dependencies": {
"babel-polyfill": "^6.7.4",
"bcrypt": "^0.8.6",
"body-parser": "^1.15.0",
"express": "^4.13.4",
"express-jwt": "^3.3.0",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^6.2.0",
"lodash": "^4.11.1",
"mongoose": "^4.4.14",
"morgan": "^1.7.0",
"path": "^0.12.7",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"redux": "^3.5.2",
"redux-thunk": "^2.0.1",
"serve-static": "^1.10.2"
},
"devDependencies": {
"babel-core": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browser-sync": "^2.11.2",
"browserify": "^13.0.0",
"node-sass": "^3.4.2",
"npm-run-all": "^1.7.0",
"watchify": "^3.7.0"
},
"babel": {
"presets": [
"es2015",
"react"
]
}
}