-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
36 lines (36 loc) · 1.19 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "node packages/api/app.js",
"start-dev-db": "sudo docker-compose up -d db",
"stop-dev-db": "sudo docker-compose down db",
"build-test-env": "./.scripts/run-tests.sh build",
"test": "./.scripts/run-tests.sh",
"test-models": "./.scripts/run-tests.sh only_models",
"NOTpretest": "node tests/waitForHttp",
"tag-container": "./.scripts/npm_tag-container.sh",
"lint:ci": "eslint --ignore-pattern node_modules \"{tests,packages}/**/*.js\"",
"lint": "eslint --ignore-pattern node_modules --fix \"{tests,packages}/**/*.js\"",
"create-version-file": "node .scripts/create-version.js",
"build-docs": "npx apidoc@0.17.6 -i . -f js -e node_modules",
"serve-docs": "npx http-server@14.1.0 ./doc"
},
"devDependencies": {
"@sensebox/eslint-config-sensebox": "^1.1.0",
"@turf/invariant": "^6.5.0",
"chai": "^4.3.10",
"chai-http": "^4.4.0",
"chakram": "^1.5.0",
"cheerio": "^1.0.0-rc.6",
"csv-parse": "^4.15.4",
"eslint": "7.26.0",
"mimelib": "^0.3.1",
"mocha": "^10.2.0",
"mqtt": "^5.0.5",
"randomgeojson": "^1.0.0"
},
"version": "11.2.0"
}