-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "freezer-todomvc",
"version": "2.0.0",
"description": "Demo on how to use freezer as a complete flux library.",
"scripts": {
"start": "node_modules/.bin/webpack-dev-server --config config/webpack",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/arqex/freezer-todomvc.git"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack"
],
"author": "Javier Marquez <[email protected]> (http://arqex.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/arqex/freezer-todomvc/issues"
},
"homepage": "https://github.com/arqex/freezer-todomvc",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"freezer-js": "^0.14.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}