-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.01 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
{
"name": "elm-typescript-starter",
"description": "",
"version": "1.0.0",
"license": "BSD-3-Clause",
"private": true,
"author": {
"name": "Hugo Saracino",
"email": "hugo.saracino@gmail.com",
"url": "https://punie.dev"
},
"contributors": [
{
"name": "Hugo Saracino",
"email": "hugo.saracino@gmail.com",
"url": "https://punie.dev"
},
{
"name": "Morgane Flauder",
"email": "morgane.flauder@gmail.com",
"url": "https://morgane.dev"
}
],
"homepage": "https://github.com/Punie/elm-typescript-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Punie/elm-typescript-starter.git"
},
"bugs": {
"url": "https://github.com/Punie/elm-typescript-starter/issues"
},
"scripts": {
"start": "parcel src/static/index.html -d build-dev --cache-dir build-dev/.cache --port 1234 --open",
"build": "parcel build src/static/index.html -d build --detailed-report --no-source-maps --no-cache --experimental-scope-hoisting",
"docs": "edp",
"lint-analyse": "elm-analyse --elm-format-path ./node_modules/.bin/elm-format",
"lint-elm": "elm-format --validate src tests",
"lint-ts": "eslint --config .eslintrc.json --ext .ts ./src",
"analyse": "elm-analyse --serve --port 8001 --elm-format-path ./node_modules/.bin/elm-format --open",
"test": "elm-test --compiler ./node_modules/.bin/elm tests/Elm/**/*.elm",
"tdd": "elm-test --compiler ./node_modules/.bin/elm tests/Elm/**/*.elm --watch"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"elm": "^0.19.1-3",
"elm-analyse": "^0.16.4",
"elm-doc-preview": "Punie/elm-doc-preview#fix-source-directories",
"elm-format": "^0.8.2",
"elm-hot": "^1.1.2",
"elm-test": "^0.19.1",
"eslint": "6.5.1",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "^2.18.2",
"parcel": "^1.12.4",
"sass": "^1.23.1",
"typescript": "^3.6.4"
}
}