-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "@specs-feup/lara-visualization",
"version": "1.0.6",
"author": "Bruno Oliveira",
"description": "LARA package for visualization of the mapping between source code and AST",
"type": "module",
"files": [
"api",
"src",
".gitignore",
"jest.config.js",
"LICENSE",
"package-lock.json",
"package.json",
"README.md",
"tsconfig.jest.json",
"tsconfig.json",
"typedoc.config.js"
],
"scripts": {
"build": "tsc && copyfiles -u 1 -e \"**/*.ts\" \"src/public/**/*\" api/",
"build:watch": "tsc --watch",
"lint": "eslint .",
"docs": "typedoc",
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --detectOpenHandles --forceExit src",
"test:cov": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"@specs-feup/lara": "^3.0.4",
"express": "^4.21.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.12",
"@types/ws": "^8.5.14",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.7.0",
"ts-jest": "^29.2.2",
"typedoc": "^0.26.4",
"typescript": "^5.5.3"
}
}