-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.4 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
{
"name": "wollok-web-tools",
"version": "1.1.7",
"description": "Wollok Web Tools library for web development",
"main": "dist/index.js",
"repository": "https://github.com/uqbar-project/wollok-web-tools",
"author": "Uqbar",
"license": "GPL-3.0",
"scripts": {
"test": "TS_NODE_PROJECT='./tsconfig.test.json' mocha --parallel -r ts-node/register/transpile-only test/**/*.spec.ts",
"test:game": "http-server -o ./test/game",
"watch": "npm run build:lib && webpack watch --mode development",
"build:lib": "rimraf dist && tsc -p ./tsconfig.build.json",
"build": "npm run build:lib && webpack --mode production",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"cytoscape": "^3.30.2",
"p5": "^1.11.0",
"path": "^0.12.7",
"socket.io": "^4.8.0",
"wollok-ts": "^4.1.8"
},
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^2.8.0",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.8",
"@types/p5": "^1.4.0",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"chai": "^4.3.6",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.57.1",
"http-server": "^14.1.0",
"mocha": "^10.7.3",
"rimraf": "^6.0.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "~5.5.1",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}