-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.39 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
{
"name": "overte-dixit",
"version": "0.0.1",
"description": "Dixit game script for Overte VR.",
"main": "overte-dixit",
"scripts": {
"test:js": "jasmine \"dixit/tests/*.js\" \"sudoku/tests/*.js\"",
"test:ts": "jasmine-ts \"codenames/tests/*.ts\"",
"test": "npm run test:js && npm run test:ts",
"lint:js": "eslint -c .eslintrc.es5.js dixit/source sudoku/source chess/source",
"lint:ts": "eslint -c .eslintrc.typescript.js codenames/tests codenames/source rescripted/source",
"lint": "npm run lint:js && npm run lint:ts",
"build:dev": "webpack --mode=development --devtool=cheap-source-map",
"build": "webpack",
"nyc": "nyc -e \".ts\" -x \"codenames/tests/*.spec.ts\" jasmine-ts \"codenames/tests/*.spec.ts\"",
"coverage": "npm run nyc && nyc report -r html",
"start": "nodemon -e ts --exec \"npm run build:dev\""
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^4.3.4",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.41.0",
"eslint-plugin-es5": "^1.5.0",
"jasmine": "^3.9.0",
"jasmine-ts": "^0.4.0",
"nodemon": "^2.0.22",
"nyc": "^15.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typescript": "~5.0.4",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4",
"wrapper-webpack-plugin": "^2.2.2"
},
"dependencies": {}
}