-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.6 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.6 KB
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
{
"name": "ringa-todomvc",
"version": "0.0.1",
"description": "Ringa, react-ringa to implement the standard ToDo MVC",
"scripts": {
"clean": "rm -rf dist",
"dev": "`npm bin`/webpack-dev-server --config ./config/webpack.config.dev.js",
"start": "npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Saajan/todomvc.git"
},
"keywords": [],
"authors": [
"Joshua Jung <joshua.p.jung@gmail.com>",
"Saajan <saajan.sn@gmail.com>"
],
"dependencies": {
"babel-jest": "^19.0.0",
"babel-polyfill": "^6.0.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"classnames": "^2.2.5",
"node-uuid": "^1.4.8",
"normalize.css": "^7.0.0",
"postcss-loader": "^2.0.6",
"react": "15.5.4",
"react-dom": "15.5.4",
"react-ringa": "0.1.3",
"ringa": "0.1.3",
"styled-components": "^2.2.1"
},
"devDependencies": {
"babel-core": "^6.7.6",
"babel-eslint": "^5.0.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "3.0.0",
"file-loader": "^0.8.5",
"html-webpack-plugin": "2.30.1",
"imports-loader": "^0.6.5",
"node-sass": "^4.5.0",
"sass-loader": "^6.0.2",
"sass-module-importer": "^1.4.0",
"style-loader": "^0.13.2",
"url-loader": "^0.5.8",
"webpack": "3.6.0",
"webpack-dev-server": "^2.4.1"
},
"jest": {
"verbose": true,
"globals": {
"__DEV__": true
}
}
}