-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.1 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
{
"name": "restacks-ui",
"version": "0.1.0",
"description": "restacks-ui",
"main": "build/server.js",
"scripts": {
"postinstall": "typings install",
"clean": "rimraf build",
"prebuild": "npm run clean",
"build": "webpack --config config/webpack/index.js",
"build:prod": "cross-env NODE_ENV=production npm run build",
"postbuild": "webpack --config config/webpack/server.js",
"prestart": "npm run build",
"start": "node build/server.js",
"start:prod": "cross-env NODE_ENV=production npm start",
"test": "node_modules/.bin/karma start config/test/karma.conf.js",
"lint": "node_modules/.bin/tslint \"src/**/**.ts*\""
},
"author": "",
"contributors": [],
"homepage": "https://github.com/restacks/restacks-ui#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/restacks/restacks-ui.git"
},
"bugs": {
"url": "https://github.com/restacks/restacks-ui/issues"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"classnames": "^2.2.5",
"compression": "^1.6.2",
"cross-env": "^3.1.3",
"css-loader": "^0.25.0",
"enzyme": "^2.4.1",
"extract-text-webpack-plugin": "^1.0.1",
"fetch-mock": "^5.5.0",
"file-loader": "^0.9.0",
"isomorphic-style-loader": "^1.0.0",
"istanbul-instrumenter-loader": "^1.0.0",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-es6-shim": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.1.2",
"phantomjs-prebuilt": "^2.1.13",
"postcss-assets": "^4.1.0",
"postcss-cssnext": "^2.8.0",
"postcss-loader": "^1.0.0",
"react-addons-test-utils": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.6",
"redux-logger": "^2.7.0",
"redux-mock-store": "^1.2.1",
"rimraf": "^2.5.4",
"serve-favicon": "^2.3.0",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"stylelint": "^7.4.2",
"ts-loader": "^0.9.3",
"tslint": "^3.15.1",
"tslint-loader": "^2.1.5",
"tslint-react": "^0.4.0",
"typescript": "^1.8.10",
"typings": "^1.4.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.4",
"webpack-dev-server": "^1.16.2",
"webpack-hot-middleware": "^2.13.0",
"webpack-manifest-plugin": "^1.0.1"
},
"dependencies": {
"es6-promise": "^4.0.5",
"express": "^4.14.0",
"history": "^4.3.0",
"isomorphic-fetch": "^2.2.1",
"material-ui": "^0.16.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-helmet": "^3.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.6",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.6.0",
"redux-connect": "^3.0.0",
"redux-thunk": "^2.1.0"
}
}