-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.13 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
{
"private": true,
"dependencies": {
"d3": "^3.5.17",
"lodash": "^4.17.4",
"rd3": "^0.7.4",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"todomvc-app-css": "2.0.6"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-__coverage__": "^11.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"chai": "^3.5.0",
"cpy-cli": "^1.0.1",
"css-loader": "^0.26.1",
"eslint": "^3.2.2",
"eslint-config-kentcdodds": "^9.0.0",
"extract-text-webpack-plugin": "^2.0.0-beta.5",
"ghooks": "^1.3.2",
"html-webpack-plugin": "^2.26.0",
"http-server": "^0.9.0",
"inline-manifest-webpack-plugin": "^3.0.1",
"karma": "^1.4.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-webpack": "^2.0.1",
"mocha": "^3.2.0",
"npm-run-all": "^4.0.1",
"offline-plugin": "^4.5.5",
"opn-cli": "^3.1.0",
"opt-cli": "^1.5.1",
"progress-bar-webpack-plugin": "^1.9.3",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"surge": "^0.18.0",
"webpack": "^2.2.0",
"webpack-config-utils": "^2.3.0",
"webpack-dev-server": "^2.2.0",
"webpack-validator": "^2.3.0"
},
"config": {
"ghooks": {
"pre-commit": "opt --in pre-commit --exec \"npm run validate\""
}
},
"scripts": {
"predeploy": "npm run build",
"deploy": "surge --project dist --domain https://todomvc-kbeloborodko.surge.sh",
"postdeploy": "opn https://todomvc-kbeloborodko.surge.sh",
"start": "http-server dist",
"prebuild": "rimraf dist",
"build": "webpack -p --env.prod",
"postbuild": "cpy favicon.ico dist",
"prebuild:dev": "rimraf dist",
"build:dev": "webpack --env.dev",
"postbuild:dev": "cpy favicon.ico dist",
"dev": "webpack-dev-server --env.dev --hot",
"lint": "eslint .",
"test": "karma start",
"watch:test": "npm test -- --auto-watch --no-single-run",
"validate": "npm-run-all --parallel lint build test"
}
}