This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
forked from Evaneos/vitaminjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.98 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
{
"name": "vitaminjs",
"version": "1.0.0-beta10",
"description": "The build toolchain against JavaScript Fatigue",
"main": "./src/shared/index.js",
"scripts": {
"test": "npm run lint",
"lint": "eslint --ext .js,.jsx src bin config"
},
"bin": {
"vitamin": "./bin/vitamin.es5.js"
},
"repository": {
"type": "git",
"url": "https://github.com/evaneos/vitaminjs.git"
},
"keywords": [
"toolchain",
"build",
"server-side rendering",
"hot module reload",
"webpack",
"react",
"redux"
],
"author": "Johan Girod <johan@evaneos.com>",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^6.0.0-beta.6",
"enzyme": "^2.4.1",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.2",
"jsdom": "^9.4.1",
"parallelshell": "^2.0.0",
"react-addons-test-utils": "^15.3.0"
},
"peerDependencies": {
"react": "^15.3.1",
"react-router": "^2.5.1",
"react-router-redux": "^4.0.5",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"react-helmet": "^3.1.0"
},
"dependencies": {
"assets-webpack-plugin": "^3.4.0",
"async-props": "^0.3.2",
"autoprefixer": "^6.3.3",
"babel-core": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-discard-module-references": "^1.1.2",
"babel-plugin-minify-dead-code-elimination": "0.0.4",
"babel-plugin-minify-guarded-expressions": "0.0.3",
"babel-plugin-minify-replace": "0.0.1",
"babel-plugin-react-require": "^3.0.0",
"babel-plugin-transform-node-env-inline": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-es2015-node6": "^0.3.0",
"babel-preset-es2016": "^6.16.0",
"babel-preset-es2017": "^6.16.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.13.0",
"babel-register": "^6.14.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"css-loader": "^0.25.0",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"history": "^4.2.0",
"isomorphic-style-loader": "^1.0.0",
"js-string-escape": "^1.0.1",
"json-loader": "^0.5.4",
"koa": "^1.1.2",
"koa-compose": "^2.4.0",
"koa-conditional-get": "^1.0.3",
"koa-etag": "^2.1.1",
"koa-mount": "^1.3.0",
"koa-send": "^3.2.0",
"koa-static": "^2.0.0",
"lodash.mergewith": "^4.0.4",
"node-fetch": "^1.6.3",
"postcss-loader": "^1.0.0",
"progress": "^1.1.8",
"react-dom": "^15.3.0",
"redbox-react": "^1.2.9",
"redux-thunk": "^2.0.1",
"rimraf": "^2.5.2",
"serviceworker-webpack-plugin": "^0.1.6",
"source-map-support": "^0.4.0",
"strip-json-comments": "^2.0.1",
"strip-json-comments-loader": "0.0.2",
"url-loader": "^0.5.7",
"webpack": "2.1.0-beta.25",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.11.0"
},
"engines": {
"node": ">=6.0.0"
}
}