This repository has been archived by the owner on May 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
113 lines (113 loc) · 3.11 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-starter",
"version": "0.1.0",
"main": "backend/server.js",
"engines": {
"node": "4.2.2",
"npm": "2.14.7"
},
"license": "MIT",
"scripts": {
"postinstall": "bash ./bin/postinstall ; cp sample.env dev.env",
"eslint": "eslint .",
"webpack": "webpack --progress --profile",
"webpack-server": "webpack-dev-server --config webpack.server.js --progress --port 2992 --inline",
"node": "node backend/server.js",
"start": "nodemon",
"mocha": "mocha --opts tests/mocha.opts tests"
},
"dependencies": {
"autoprefixer-loader": "^3.1.0",
"axios": "^0.7.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-react": "^6.23.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"babel-preset-stage-1": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-preset-stage-3": "^6.22.0",
"baobab": "^2.0.0",
"baobab-react": "^1.0.0",
"body-parser": "^1.12.4",
"bootstrap": "^3.3.4",
"bootstrap-ext": "^0.2.0",
"classnames": "^2.1.5",
"compression": "^1.6.0",
"cookie-parser": "^1.3.4",
"css-loader": "^0.28.0",
"deep-merge": "^1.0.0",
"emailjs": "^1.0.0",
"event-stream": "^3.3.1",
"express": "^4.12.3",
"extract-text-webpack-plugin": "^2.1.0",
"faker": "^3.0.1",
"file-loader": "^0.11.1",
"flat": "^1.5.1",
"font-awesome": "^4.3.0",
"glob": "^5.0.9",
"html-loader": "^0.4.5",
"js-base64": "^2.1.8",
"json-loader": "^0.5.2",
"json5": "^0.5.1",
"json5-loader": "^1.0.1",
"less": "^2.5.1",
"less-loader": "^4.0.3",
"lodash.debounce": "^3.1.0",
"lodash.throttle": "^3.0.3",
"marked": "^0.3.3",
"mkdirp": "^0.5.0",
"moment": "^2.10.3",
"morgan": "^1.5.3",
"node-uuid": "^1.4.3",
"nunjucks": "^2.1.0",
"paqmind.data-lens": "^0.6.0",
"paqmind.tcomb-lens": "^0.2.0",
"ramda": "^0.23.0",
"raw-loader": "^0.5.1",
"react": "^0.13.3",
"react-document-title": "^2.0.1",
"react-hot-loader": "^1.2.7",
"react-proxy-loader": "^0.3.4",
"react-router": "^0.13.2",
"readable-stream": "^1.1.13",
"style-loader": "^0.16.1",
"tcomb": "^2.5.0",
"tcomb-validation": "^2.2.0",
"url-loader": "^0.5.6",
"util": "^0.10.3",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.14.1",
"winston": "^1.0.0",
"winston-mail": "^0.5.0",
"yargs": "^3.9.1"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"chai": "^3.3.0",
"eslint": "^1.5.1",
"mocha": "^2.2.5",
"nodemon": "^1.3.7"
},
"babel": {
"plugins": [
"transform-class-properties",
"transform-decorators-legacy",
"transform-object-assign",
"transform-object-rest-spread"
],
"presets": [
"stage-3",
"stage-2",
"stage-1",
"stage-0",
"react",
"latest"
]
}
}