-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.9 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
{
"name": "dob-redux-todomvc",
"version": "0.0.1",
"description": "",
"main": "built/index.js",
"types": "src/index.ts",
"scripts": {
"test": "tsc && nyc --reporter=lcov --reporter=text --reporter=json ava && rm -rf .nyc_output",
"posttest": "codecov -f coverage/*.json -t",
"prepublish": "rm -rf built && tsc && npm run build",
"start": "run-react develop",
"tslint": "tslint './src/**/*.?(ts|tsx)'",
"build": "run-react production"
},
"ava": {
"files": [
"built/**/*.test.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dobjs/dob-redux-todomvc.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dobjs/dob-redux-todomvc/issues"
},
"homepage": "https://github.com/dobjs/dob-redux-todomvc#readme",
"devDependencies": {
"@types/classnames": "^2.2.3",
"@types/node": "*",
"@types/react": "*",
"@types/react-dom": "*",
"@types/react-redux": "^5.0.12",
"@types/webpack": "*",
"ascoders-tslint-config": "^1.0.2",
"ava": "^0.23.0",
"codecov": "^3.0.0",
"css-loader": "^0.28.7",
"nyc": "^11.3.0",
"pre-commit": "^1.2.2",
"react": "^16.1.0",
"react-dom": "^16.1.0",
"run-react": "^2.1.8",
"style-loader": "^0.19.0",
"tslint": "^5.8.0",
"typescript": "^2.6.1",
"webpack": "^3.8.1"
},
"dependencies": {
"classnames": "^2.2.5",
"dob": "^2.5.4",
"dob-redux": "^1.0.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"todomvc-app-css": "^2.1.0"
},
"pre-commit": [
"tslint"
],
"run-react": {
"entrys": [
"src/index"
],
"dlls": [
"react",
"react-dom"
],
"rules": [
{
"test": ".css$",
"use": [
"style-loader",
"css-loader"
]
}
],
"production": {
"path": "built",
"filename": "bundle.js"
}
}
}