-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
22 lines (22 loc) · 1.07 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
{
"devDependencies": {
"@vue/babel-preset-app": "^5.0.8",
"chokidar-cli": "^3.0.0",
"concurrently": "^7.6.0",
"elm-doc-preview": "^5.0.5",
"elm-test": "^0.19.1-revision10",
"elm-tooling": "^1.10.0",
"vuepress": "^1.9.7"
},
"scripts": {
"postinstall": "elm-tooling install",
"test": "elm-test && npm run-script build-examples && elm make --docs docs.json && elm-format --validate . && elm diff",
"build-examples": "(cd examples && elm make src/*.elm --output=/dev/null && elm-test)",
"run-examples": "(cd examples && elm reactor --port 8002)",
"run-examples-backend": "(cd examples && PORT=8003 ./node_modules/.bin/nodemon server.js)",
"watch": "chokidar --initial elm.json 'src/**/*.elm' 'tests/**/*.elm' 'examples/**/*.elm' -i '**/elm-stuff/**' -i '**/node_modules/**' -c 'npm test'",
"run-doc-preview": "elm-doc-preview -p 8001",
"run-guide": "vuepress dev docs --no-clear-screen -p 8004",
"start": "concurrently --kill-others npm:watch npm:run-doc-preview npm:run-examples npm:run-examples-backend npm:run-guide"
}
}