forked from 9elements/academy-exercise-es-6-classes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.48 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": "9elements-academy-learn-javascript-es6-classes",
"version": "0.0.1",
"description": "Lear how to use ES6 Classes",
"main": "server.js",
"scripts": {
"build:webpack:production": "NODE_ENV=production ./node_modules/webpack/bin/webpack.js --progress --config webpack/config.production.js",
"build:webpack:node": "NODE_ENV=production ./node_modules/webpack/bin/webpack.js --progress --config webpack/config.node.js",
"lint": "./node_modules/eslint/bin/eslint.js src",
"start": "node server.js",
"test": "karma start karma/config.development.js"
},
"keywords": [
"react",
"reactjs",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack",
"flux",
"todomvc"
],
"repository": {
"type": "git",
"url": "https://github.com/sebastiandeutsch/react-redux-starter.git"
},
"license": "MIT",
"devDependencies": {
"@babel/preset-typescript": "^7.3.3",
"axios": "^0.12.0",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-external-helpers-2": "^6.3.13",
"babel-plugin-react-transform": "^2.0.2",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"classnames": "^2.2.1",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.23.1",
"directory-named-webpack-plugin": "^1.0.1",
"enzyme": "^2.3.0",
"es5-shim": "^4.4.1",
"es6-promise": "^3.0.2",
"eslint": "^2.0.0",
"eslint-config-standard": "^5.1.0",
"eslint-config-standard-jsx": "^1.1.1",
"eslint-config-standard-react": "^2.3.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-standard": "^1.3.1",
"express": "^4.13.3",
"file-loader": "^0.9.0",
"font-awesome": "^4.5.0",
"font-awesome-webpack": "0.0.4",
"history": "^3.0.0",
"jasmine-core": "^2.4.1",
"jquery": "^3.0.0",
"karma": "^1.0.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-jasmine-matchers": "^2.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"lodash": "^4.7.0",
"node-libs-browser": "^1.0.0",
"node-sass": "^3.4.2",
"phantomjs-function-bind-polyfill": "^1.0.0",
"phantomjs-prebuilt": "^2.1.3",
"raw-loader": "^0.5.1",
"react": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-addons-update": "^15.1.0",
"react-dom": "^15.1.0",
"react-fontawesome": "^1.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.5.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.2",
"redux": "^3.5.2",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.0",
"redux-devtools-log-monitor": "^1.0.5",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.0",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"ts-loader": "^6.0.0",
"typescript": "^3.4.5",
"url-loader": "^0.5.7",
"uuid-js": "^0.7.5",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0",
"webpack-notifier": "^1.3.0"
},
"dependencies": {
"typescript": "^3.4.5"
}
}