-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·49 lines (49 loc) · 1.63 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
{
"name": "@lasso/root",
"version": "1.0.0",
"engines": {
"node": ">=18"
},
"description": "Project LASSO",
"homepage": "https://github.com/Universite-Gustave-Eiffel/lasso",
"bugs": "https://github.com/Universite-Gustave-Eiffel/lasso/issues",
"repository": {
"type": "git",
"url": "https://github.com/Universite-Gustave-Eiffel/lasso.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "npm run clean --workspaces --if-present",
"lint": "esw . --ext .ts --ext tsx",
"compile": "tsc -b --preserveWatchOutput",
"dataprep": "npm run exec --workspace=@lasso/dataprep",
"build": "npm run clean && npm run lint && npm run compile -- --force && npm run build --workspace=@lasso/client",
"start": "export PUBLIC_URL=/lasso && npm run compile && concurrently -n lint,compile,dataprep,client \"npm run lint -- --watch\" \"npm run compile -- --watch\" \"npm run start --workspace=@lasso/dataprep\" \"npm run start --workspace=@lasso/client\"",
"test": "npm run test --workspaces --if-present"
},
"devDependencies": {
"@types/assert": "^1.5.6",
"@types/lodash": "^4.14.179",
"@types/mocha": "^9.1.0",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"concurrently": "^7.0.0",
"eslint": "^8.10.0",
"eslint-watch": "^8.0.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"rimraf": "^5.0.1",
"ts-node": "^10.7.0",
"tslib": "^2.6.1",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.1.2",
"lodash": "^4.17.21",
"maplibre-gl": "^4.1.0"
}
}