This repository has been archived by the owner on Jul 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.19 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": "grisefest-2017-web",
"version": "1.0.0",
"description": "SOL frontpage frontend application",
"main": "app.js",
"engines": {
"node": "7.9.0"
},
"scripts": {
"test": "npm run test:server && npm run test:client",
"test:client": "karma start",
"test:server": "mocha --require babel-register \"./src/**/*.test.server.js\"",
"watch:test": "karma start --no-single-run --browsers Firefox",
"test:lint": "eslint src/**/*.js*",
"pretest": "npm run test:lint",
"build": "webpack",
"postinstall": "npm run build",
"start": "node ./src/server-bootstrap",
"develop": "node dev-server"
},
"repository": {
"type": "git",
"url": "https://github.com/soldotno/aurora-demo-frontend.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/soldotno/aurora-demo-frontend/issues"
},
"homepage": "https://github.com/soldotno/aurora-demo-frontend",
"dependencies": {
"aurora-core": "2.2.0",
"aurora-sass-loader": "github:soldotno/aurora-sass-loader#master",
"autoprefixer": "6.7.7",
"axios": "0.16.1",
"babel": "6.23.0",
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-loader": "7.0.0",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-runtime": "6.23.0",
"bluebird": "3.5.0",
"classnames": "2.2.5",
"compression": "1.6.2",
"cookie-parser": "1.4.3",
"cors": "2.8.3",
"css-loader": "0.28.0",
"debug": "2.6.4",
"es5-shim": "4.5.9",
"express": "4.15.2",
"express-useragent": "1.0.7",
"is-client": "0.0.2",
"isomorphic-ensure": "1.0.1",
"js-cookie": "2.1.4",
"location-bar": "3.0.1",
"lodash": "4.17.4",
"lodash.compose": "2.4.1",
"lodash.set": "4.3.2",
"md5": "2.2.1",
"moment": "2.18.1",
"ms": "1.0.0",
"newrelic": "1.38.2",
"no-op": "1.0.3",
"node-sass": "4.5.2",
"postcss-loader": "1.3.3",
"progress-bar-webpack-plugin": "1.9.3",
"prop-types": "15.5.8",
"qs": "6.4.0",
"query-string": "4.3.4",
"react": "15.5.4",
"react-dom": "15.5.4",
"react-hot-loader": "1.3.1",
"react-redux": "5.0.4",
"redis": "2.7.1",
"redux": "3.6.0",
"redux-logger": "3.0.1",
"redux-thunk": "2.2.0",
"sass-loader": "6.0.3",
"serve-favicon": "2.4.2",
"stringify-clone": "2.0.0",
"style-loader": "0.16.1",
"styled-components": "2.0.0-15",
"url-join": "2.0.1",
"url-parse": "1.1.8",
"uuid": "3.0.1",
"uuid-validate": "0.0.2",
"webpack": "2.4.1"
},
"devDependencies": {
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"expect": "1.20.2",
"expect-jsx": "3.0.0",
"inject-loader": "3.0.0",
"karma": "1.6.0",
"karma-chrome-launcher": "2.0.0",
"karma-firefox-launcher": "1.0.1",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.3",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.3",
"mocha": "3.3.0",
"mockery": "2.0.0",
"webpack-dev-server": "2.4.4"
}
}