This repository has been archived by the owner on Jan 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.6 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
{
"name": "react-boilerplate",
"version": "0.1.0",
"repository": "https://gitlab.com/zenato/react-boilerplate.git",
"description": "React boilerplate",
"private": true,
"author": "Yeongjin Lee <yeongjinnn@gmail.com>",
"license": "MIT",
"main": "build/server.js",
"scripts": {
"dev": "node scripts/start.js",
"test": "node scripts/test.js",
"build": "node scripts/build.js",
"start": "node build/server.js",
"flow": "node_modules/.bin/flow",
"heroku-postbuild": "node scripts/build.js"
},
"dependencies": {
"axios": "^0.16.1",
"body-parser": "^1.17.1",
"cookie-parser": "^1.4.3",
"cookies-js": "^1.2.3",
"dateformat": "^2.0.0",
"dotenv": "^4.0.0",
"ejs": "^2.5.6",
"express": "^4.15.2",
"lodash": "^4.17.2",
"node-emoji": "^1.5.1",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.5.4",
"react-helmet": "^5.0.3",
"react-hot-loader": "^3.0.0-beta.3",
"react-redux": "^5.0.4",
"react-router": "^3.0.5",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"source-map-support": "^0.4.14",
"validate.js": "^0.11.0"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-source-map-support-for-6": "0.0.5",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chalk": "^1.1.3",
"chokidar": "^1.6.0",
"css-loader": "^0.28.0",
"del": "^2.2.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"flow-bin": "^0.40.0",
"jest": "^19.0.2",
"json-loader": "^0.5.4",
"object-assign": "^4.1.1",
"ora": "^1.2.0",
"postcss-loader": "^1.3.3",
"redux-devtools": "^3.3.2",
"strip-ansi": "^3.0.1",
"style-loader": "^0.16.1",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5",
"webpack-manifest-plugin": "^1.0.1",
"webpack-node-externals": "^1.6.0"
},
"engines": {
"node": "^7.1.0",
"npm": "^4.0.3"
}
}