-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
96 lines (96 loc) · 3.57 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
{
"name": "funk",
"version": "0.0.1",
"description": "visual frontend framework",
"main": "index.js",
"bin": {
"funk": "cli-src/index.mjs"
},
"directories": {
"test": "tests"
},
"scripts": {
"branch-naming-check": "branch-naming-check '^(gh-([1-9][0-9]*-)+|no-issue-)[a-z][a-z0-9-]+$'",
"build": "elm-app build",
"build-cli": "elm-app make cli-src/Cli.elm --output=elm-stuff/cli.js",
"build-runtime": "elm-app make src/Runtime.elm --output=public/_runtime.html",
"code-quality-checks": "npm test && npm run impfix && git add . && pretty-quick --staged --ignore-path=prettierignore && git add .",
"dev-cli": "nodemon --watch 'cli-src/**/*' -e elm,js,mjs --exec \"npm run build-cli && funk\"",
"format": "elm-format src tests --yes && prettier src/**/*.js --tab-width 4 --write",
"impfix": "elm-impfix \"src/**/*.elm\" --replace && elm-impfix \"tests/**/*.elm\" --replace",
"postinstall": "husky install",
"stage-all": "git add .",
"start": "elm-app start --no-debug",
"start-debug": "elm-app start",
"tdd-elm": "nodemon --config nodemon-tdd-elm.json --exec 'npm run test-elm'",
"tdd-js": "nodemon --watch '*' --watch 'cli-src/**/*' -e js,mjs --exec 'npm run test-js'",
"test": "npm run test-elm && npm run test-js",
"test-all": "npm run test-elm && npm run test-js",
"test-elm": "elm-verify-examples && elm-app test && npm run test-elm-review",
"test-elm-review": "elm-review",
"test-js": "rm -rf tests/unit/assets/temp; node tests/unit.mjs | tap-diff; rm -rf assets/temp"
},
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.0",
"@babel/polyfill": "^7.11.5",
"@isomorphic-git/lightning-fs": "^4.3.0",
"@octokit/rest": "^16.33.1",
"chokidar": "^3.4.2",
"codemirror": "^5.59.4",
"create-elm-app": "^4.2.25",
"elm-analyse": "^0.16.4",
"elm-format": "^0.8.1",
"elm-impfix": "^1.0.8",
"elm-verify-examples": "^5.0.0",
"fluture": "^13.0.1",
"fluture-sanctuary-types": "^7.0.0",
"git-root-dir": "^1.0.2",
"hasha": "^5.2.0",
"http-proxy-middleware": "^1.0.5",
"husky": "^5.2.0",
"hybrids": "^4.0.2",
"ignore": "^5.1.8",
"isomorphic-fetch": "^2.2.1",
"isomorphic-git": "^1.7.8",
"jszip": "^3.5.0",
"nodemon": "^2.0.1",
"parse-curl": "^0.2.6",
"path": "^0.12.7",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"prettier-plugin-elm": "^0.7.0",
"pretty-quick": "^3.1.0",
"readline": "^1.3.0",
"sanctuary": "^3.1.0",
"sanctuary-def": "^0.22.0",
"slugify": "^1.4.5",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FranzSkuffka/funk.git"
},
"author": "",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/FranzSkuffka/funk/issues"
},
"homepage": "https://github.com/FranzSkuffka/funk#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/register": "^7.11.5",
"@funk-team/branch-naming-check": "^1.0.0",
"elm-review": "^2.4.6",
"file-api": "^0.10.4",
"filereader": "^0.10.3",
"socket.io-client": "^2.3.0",
"tap-diff": "^0.1.1",
"zora": "^4.0.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}