-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.46 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.46 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
{
"name": "modular-node-starter",
"version": "0.0.1",
"description": "Full-stack ES6 application starter | Server: NodeJs / Express / REST api / Sequelize | Client: Handlebars / SASS / WebPack",
"scripts": {
"start": "concurrently \"npm run build\" \"npm run server\"",
"build": "webpack --config build/webpack.config.js",
"build:watch": "webpack --config build/webpack.config.js --watch",
"server": "babel-node src/server/main.js",
"server:watch": "nodemon --exec babel-node src/server/main.js --watch \"server/**/*.js\" ",
"dev": "concurrently \"npm run build:watch\" \"npm run server:watch\""
},
"dependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"bluebird": "^3.4.0",
"body-parser": "^1.15.1",
"bootstrap": "^4.0.0-alpha.2",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"express-handlebars": "^3.0.0",
"glob": "^7.0.3",
"jquery": "^3.0.0",
"lodash": "^4.13.1",
"pg": "^5.1.0",
"pg-hstore": "^2.3.2",
"sequelize": "^3.23.3",
"superagent": "^2.0.0"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"concurrently": "^2.1.0",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"node-sass": "^3.7.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}