-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 992 Bytes
/
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
{
"workspaces": [
"examples/*",
"src/js/*"
],
"scripts": {
"format": "prettier --write .",
"lint:js": "eslint \"src/js/**/*.ts\"",
"build:wasm": ".\\scripts\\build.bat",
"build:wasm-workflow": "./scripts/run_docker_cmd.sh ./scripts/build.sh",
"jest": "jest --verbose",
"test": ".\\scripts\\test.bat",
"test-workflow": "./scripts/test.sh"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@microsoft/msfs-types": "^1.14.6",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.2.2",
"uuid": "^9.0.1"
}
}