-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.63 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
{
"name": "fullstack-js-express4-react-starter",
"version": "0.0.1",
"description": "Starter for express 4 w/ postgres and passportJS for auth",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "npm run eslint:server && webpack --watch && npm run watch:css && nodemon server.js",
"eslint:server": "eslint models routes server.js",
"build": "webpack && npm run eslint:server && npm run build-css",
"build:css": "node-sass --include-path scss front-end/src/scss/app.scss public/css/app.css",
"watch:css": "nodemon -e scss -x \"npm run build:css\"",
"test": "mocha --compilers js:babel/register --recursive",
"test:watch": "npm test -- --watch",
"db:migrate": "sequelize db:migrate",
"postinstall": "npm run build"
},
"dependencies": {
"axios": "^0.7.0",
"babel-core": "^6.2.1",
"babel-eslint": "^5.0.0-beta4",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"babel-runtime": "^6.2.0",
"bcrypt": "^0.8.5",
"bluebird": "^3.0.5",
"body-parser": "^1.14.1",
"config": "^1.17.1",
"connect-flash": "^0.1.1",
"debug": "^2.2.0",
"del": "^2.1.0",
"eslint": "^1.10.2",
"eslint-config-airbnb": "1.0.2",
"eslint-loader": "^1.1.1",
"eslint-plugin-react": "^3.11.1",
"express": "~4.13.x",
"express-session": "^1.12.1",
"flux-standard-action": "^0.6.0",
"history": "^1.13.1",
"immutable": "^3.7.5",
"jade": "^1.11.0",
"morgan": "^1.6.1",
"mustbe": "^0.3.1",
"node-config": "0.0.2",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pg": "4.x",
"pg-hstore": "^2.3.2",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-loader": "^2.0.0",
"react-redux": "^4.0.0",
"react-router": "^1.0.0",
"redux": "^3.0.4",
"redux-thunk": "^1.0.0",
"sequelize": "^3.14.2",
"sequelize-cli": "^2.2.1",
"webpack": "^1.12.9"
},
"engines": {
"node": "5.0.x"
},
"repository": {
"type": "git",
"url": "https://github.com/krousseau/fullstack-js-express4-react-starter"
},
"keywords": [
"node",
"heroku",
"express",
"postgres",
"mustbe",
"sequelize",
"passportJs",
"react"
],
"license": "MIT",
"devDependencies": {},
"paths": {
"source": {
"css": [
"front-end/src/css/*.scss"
],
"js": "front-end/src/js/**/*.*",
"serverJs": [
"server.js",
"routes/**/*.js",
"config/**/*.js",
"models/**/*.js"
]
},
"dest": {
"css": "./public/css",
"js": "./public/js"
}
}
}