forked from faddi/vortigern
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
162 lines (162 loc) · 4.72 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "vortigern",
"version": "0.1.2",
"description": "A universal boilerplate for building web applications w/ TypeScript, React, Redux and more.",
"main": "build/server.js",
"scripts": {
"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": "karma start config/test/karma.conf.js",
"lint": "tslint \"src/**/**.ts*\""
},
"author": "Barbar Startup Factory <[email protected]>",
"contributors": [
{
"name": "Altay Aydemir",
"email": "[email protected]",
"url": "http://altayaydemir.com/"
},
{
"name": "Batuhan Icoz",
"email": "[email protected]",
"url": "http://batuhanicoz.com/"
},
{
"name": "Omer Ufuk Efendioglu",
"email": "[email protected]",
"url": "http://ufukomer.com/"
},
{
"name": "Patrick Roza",
"email": "[email protected]",
"url": "http://patrickroza.com/"
},
{
"name": "Ardani Rohman",
"email": "[email protected]",
"url": "http://ardani.github.io/"
}
],
"homepage": "https://github.com/barbar/vortigern.git",
"repository": {
"type": "git",
"url": "https://github.com/barbar/vortigern.git"
},
"bugs": {
"url": "https://github.com/barbar/vortigern/issues"
},
"keywords": [
"react",
"redux",
"typescript",
"webpack",
"universal",
"isomorphic",
"starter",
"kit",
"boilerplate",
"hot reload",
"react-hot-loader",
"enzyme",
"mocha",
"chai"
],
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/compression": "^0.0.36",
"@types/enzyme": "^3.1.3",
"@types/express": "^4.11.1",
"@types/history": "^4.5.0",
"@types/isomorphic-fetch": "0.0.34",
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.0",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.2",
"@types/react-helmet": "^5.0.2",
"@types/react-redux": "^6.0.1",
"@types/react-router": "^4.0.26",
"@types/react-router-config": "^1.0.7",
"@types/react-router-dom": "^4.2.7",
"@types/react-router-redux": "^5.0.15",
"@types/redux-logger": "^3.0.6",
"@types/redux-mock-store": "0.0.13",
"@types/serialize-javascript": "1.3.2",
"@types/serve-favicon": "^2.2.30",
"@types/webpack": "^4.4.0",
"awesome-typescript-loader": "^5.0.0",
"babel-core": "^6.22.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.3",
"extract-text-webpack-plugin": "^3.0.2",
"fetch-mock": "^6.4.3",
"file-loader": "^1.1.5",
"isomorphic-style-loader": "^4.0.0",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^2.0.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage-istanbul-reporter": "^2.0.0",
"karma-es6-shim": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"mocha": "^5.2.0",
"phantomjs-prebuilt": "^2.1.14",
"postcss-assets": "^5.0.0",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^2.1.5",
"react-hot-loader": "^4.2.0",
"react-test-renderer": "16.4.0",
"redux-mock-store": "^1.2.1",
"rimraf": "^2.5.4",
"source-map-loader": "^0.2.3",
"style-loader": "^0.21.0",
"stylelint": "^9.2.1",
"tslint": "^5.10.0",
"tslint-loader": "^3.3.0",
"tslint-react": "^3.6.0",
"typescript": "2.9.1",
"url-loader": "^1.0.1",
"webpack": "^4.10.2",
"webpack-cli": "^3.0.1",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-hot-middleware": "^2.18.0",
"webpack-manifest-plugin": "^2.0.2"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"chalk": "^2.3.0",
"compression": "^1.6.2",
"express": "^4.14.0",
"history": "^4.5.1",
"react": "16.4.0",
"react-css-modules": "^4.1.0",
"react-dom": "16.4.0",
"react-helmet": "^5.0.3",
"react-redux": "^5.0.2",
"react-router": "^4.2.0",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"serialize-javascript": "1.5.0",
"serve-favicon": "^2.3.2"
}
}