-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
{
"name": "mmlpx-todomvc",
"version": "1.0.0",
"description": "mmlpx todomvc",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --inline --progress --config build/webpack.dev.js",
"prepush": "npm run lint",
"build": "cross-env NODE_ENV=production webpack --config build/webpack.prod.js --display normal",
"lint": "tslint 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmlpxjs/mmlpx-todomvc.git"
},
"keywords": [
"mmlpx",
"time-travel",
"snapshot",
"mobx"
],
"author": "Kuitos",
"license": "MIT",
"bugs": {
"url": "https://github.com/mmlpxjs/mmlpx-todomvc/issues"
},
"homepage": "https://github.com/mmlpxjs/mmlpx-todomvc#readme",
"dependencies": {
"lodash": "^4.17.10",
"lodash-decorators": "^6.0.0",
"mmlpx": "^3.2.0",
"mobx": "^4.3.1",
"mobx-react": "^5.2.3",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"todomvc-app-css": "^2.0.1",
"todomvc-common": "^1.0.2"
},
"devDependencies": {
"@types/lodash": "^4.14.110",
"@types/react": "^16.4.2",
"@types/react-dom": "^16.0.6",
"autoprefixer": "^7.2.4",
"awesome-typescript-loader": "^3.5.0",
"clean-webpack-plugin": "^0.1.17",
"cross-env": "^5.1.3",
"css-loader": "^0.28.8",
"eslint-plugin-react": "^3.16.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"html-loader": "^0.5.4",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.1",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"source-map-loader": "^0.2.3",
"style-loader": "^0.19.1",
"ts-plugin-mmlpx": "0.0.3",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^2.9.2",
"uglifyjs-webpack-plugin": "^1.1.6",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-dev-server": "^2.9.7",
"webpack-merge": "^4.1.1"
}
}