-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
84 lines (84 loc) · 2.45 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
{
"name": "boiler-plate",
"version": "1.0.0",
"description": "Boiler plate for spectiv",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev": "nodemon bin/www",
"clean": "rm -rf dist",
"build": "npm run clean && mkdir dist && babel server -D -d dist --presets es2015,stage-2",
"production": "npm run sass && npm run -s build && webpack -p --config ./webpack.production.config.js && node bin/production.www",
"sass": "sass client/styles/base.scss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpectivOfficial/boiler-plate.git"
},
"author": "Jin Chung",
"license": "ISC",
"bugs": {
"url": "https://github.com/SpectivOfficial/boiler-plate/issues"
},
"homepage": "https://github.com/SpectivOfficial/boiler-plate#readme",
"dependencies": {
"axios": "^0.18.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"connect-redis": "^3.3.3",
"consolidate": "^0.15.1",
"express": "^4.16.2",
"express-session": "^1.15.6",
"morgan": "^1.9.0",
"mustache": "^2.3.0",
"nodemailer": "^4.6.3",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"password-rules": "0.0.3",
"pg": "^7.4.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"sequelize": "^4.37.2",
"validator": "^9.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.1",
"babel-loader": "^7.1.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"css-loader": "^0.28.10",
"dotenv": "^5.0.0",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"eslint-watch": "^3.1.3",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "github:webpack-contrib/html-webpack-plugin",
"node-sass": "^4.7.2",
"sass": "^1.0.0-beta.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.2",
"webpack": "^4.0.0",
"webpack-cli": "^2.0.10",
"webpack-dev-middleware": "^2.0.6",
"webpack-hot-middleware": "^2.21.0"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}