-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
91 lines (91 loc) · 2.94 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
85
86
87
88
89
90
91
{
"name": "skate-starter",
"version": "1.2.0",
"repository": "https://www.github.com/Hotell/skate-starter",
"description": "SkateJS + Typescript starter",
"keywords": [
"webcomponents",
"reactive-ui",
"skatejs",
"incremental-dom"
],
"author": "Martin Hochel",
"license": "MIT",
"main": "main.js",
"scripts": {
"start": "webpack-dev-server --env.dev --hot",
"start:prod": "pushstate-server dist/",
"prebuild": "npm run cleanup && npm run verify",
"build": "webpack --env.prod",
"cleanup": "shx rm -rf dist",
"ts:lint": "tslint \"src/**/*.tsx\" \"src/**/*.ts\"",
"ts:lint:fix": "npm run ts:lint -- --fix",
"ts:format": "tsfmt --verify",
"ts:format:fix": "tsfmt -r",
"ts:style": "npm run ts:format && npm run ts:lint",
"ts:style:fix": "npm run ts:format:fix && npm run ts:lint:fix",
"cz": "git-cz",
"commitmsg": "validate-commit-msg",
"verify": "npm run ts:style && npm test",
"test": "echo \"Error: no test specified\" && exit 0",
"prepush": "npm run verify",
"release": "npm run release:local && npm run release:github",
"release:local": "npm run build && standard-version",
"release:github": "git push --no-verify --follow-tags origin master",
"profile": "npm run profile:stats && npm run profile:run",
"profile:run": "webpack-bundle-analyzer stats.json dist",
"profile:stats": "webpack --env.prod --profile --json > stats.json"
},
"engines": {
"node": ">=6.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"maxSubjectLength": 120
}
},
"devDependencies": {
"awesome-typescript-loader": "3.1.3",
"commitizen": "2.9.6",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.28.4",
"cz-conventional-changelog": "2.0.0",
"extract-text-webpack-plugin": "2.1.2",
"html-webpack-plugin": "2.28.0",
"husky": "0.13.4",
"progress-bar-webpack-plugin": "1.9.3",
"pushstate-server": "3.0.0",
"shx": "0.2.2",
"source-map-loader": "0.2.1",
"standard-version": "4.2.0",
"strip-json-comments-cli": "1.0.1",
"style-loader": "0.18.2",
"to-string-loader": "1.1.5",
"tslint": "5.4.3",
"tslint-react": "3.0.0",
"typescript": "rc",
"typescript-formatter": "5.2.0",
"uglify-js": "git://github.com/mishoo/UglifyJS2#harmony-v2.8.22",
"uglifyjs-webpack-plugin": "0.4.4",
"validate-commit-msg": "2.12.2",
"webpack": "2.6.1",
"webpack-bundle-analyzer": "2.8.2",
"webpack-config-utils": "2.3.0",
"webpack-dev-server": "2.4.5"
},
"dependencies": {
"@webcomponents/template": "1.0.0",
"@webcomponents/webcomponents-platform": "1.0.0",
"@webcomponents/webcomponentsjs": "1.0.1",
"es6-promise": "4.1.0",
"preact": "8.1.0",
"sanitize.css": "5.0.0",
"skatejs": "5.0.0-alpha.10",
"snarkdown": "1.2.2",
"tslib": "1.7.1"
}
}