forked from halfzebra/create-elm-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.42 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "create-elm-app",
"description": "Elm apps with zero configuration",
"version": "0.0.0-development",
"author": "Eduard Kyvenko <[email protected]>",
"bin": {
"elm-app": "./bin/elm-app-cli.js",
"create-elm-app": "./bin/create-elm-app-cli.js"
},
"bugs": {
"url": "https://github.com/halfzebra/create-elm-app/issues",
"email": "[email protected]"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/cli": "7.0.0-beta.56",
"@babel/core": "7.0.0-beta.56",
"@babel/plugin-transform-runtime": "7.0.0-beta.56",
"@babel/preset-env": "7.0.0-beta.56",
"assets-webpack-plugin": "^3.5.1",
"autoprefixer": "^8.0.0",
"babel-loader": "8.0.0-beta.4",
"babel-runtime": "^6.26.0",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"chalk": "^2.3.1",
"clean-webpack-plugin": "^0.1.18",
"cli-table": "0.3.1",
"connect-history-api-fallback": "^1.5.0",
"cross-spawn": "^6.0.5",
"css-loader": "^0.28.9",
"dotenv": "^5.0.0",
"elm": "0.19.0-bugfix2",
"elm-hot-webpack-loader": "^1.0.0",
"elm-test": "^0.19.0-beta4",
"elm-webpack-loader": "^5.0.0",
"file-loader": "^1.1.6",
"fs-extra": "^6.0.1",
"html-webpack-plugin": "^3.0.7",
"http-proxy-middleware": "^0.17.4",
"mini-css-extract-plugin": "^0.4.0",
"minimist": "1.2.0",
"postcss-flexbugs-fixes": "^3.3.0",
"postcss-loader": "2.1.5",
"promise": "8.0.1",
"prompt": "1.0.0",
"react-dev-utils": "6.0.0-next.3e165448",
"react-error-overlay": "^4.0.0",
"string-replace-loader": "^2.1.1",
"style-loader": "^0.21.0",
"sw-precache-webpack-plugin": "^0.11.5",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1",
"webpack": "^4.2.0",
"webpack-dev-server": "^3.1.1",
"webpack-manifest-plugin": "^2.0.3",
"whatwg-fetch": "2.0.4"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"dir-compare": "^1.4.0",
"eslint": "^4.18.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"mocha": "^5.0.1",
"nightmare": "^3.0.1",
"prettier": "^1.10.2",
"rimraf": "^2.6.2",
"semantic-release": "12.1.1",
"unexpected": "^10.37.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"bin",
"config",
"scripts",
"template",
"README.md"
],
"keywords": [
"cli",
"elm",
"webpack"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/halfzebra/create-elm-app"
},
"scripts": {
"cz": "git-cz",
"eslint": "eslint .",
"format": "prettier --write '{bin,config,scripts,template/src,tests}/**/*.js'",
"semantic-release": "semantic-release",
"test": "npm run test:cli && npm run test:functional",
"test:cli": "mocha tests/cliAccessibility.js --reporter spec --timeout 15000",
"test:functional": "mocha tests/*.spec.js --reporter spec --timeout 15000",
"app:build": "cd template && node ../bin/elm-app-cli.js build",
"app:start": "cd template && node ../bin/elm-app-cli.js start",
"app:test": "cd template && node ../bin/elm-app-cli.js test",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"package-lock.json": [
"git rm --cached"
]
}
}