-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
53
54
55
56
{
"name": "alan-and-ada",
"version": "0.1.0",
"description": "Alan and Ada programming game for kids",
"homepage": "https://github.com/WimYedema/alan-and-ada",
"main": "index.js",
"scripts": {
"build:prod": "webpack --mode production",
"build:dev": "webpack --mode development",
"dev": "webpack-dev-server --mode development --open",
"start": "webpack-dev-server --mode development --open",
"xtest": "npm run build:prod && ex-test -d ./dist -t ./test/integration/ex-tests.js",
"test": "npm run build:prod && jest",
"jest": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"excalibur": "0.28.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@excaliburjs/testing": "0.25.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.11",
"copy-webpack-plugin": "11.0.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.1.1",
"ts-jest": "^29.1.1",
"ts-loader": "9.4.4",
"typedoc": "^0.25.6",
"typedoc-plugin-no-inherit": "^1.4.0",
"typescript": "^5.3.3",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
},
"typedocOptions": {
"name": "Alan and Ada",
"skipErrorChecking": true,
"entryPoints": [
"./src/actors/docs.ts",
"./src/core/docs.ts",
"./src/scenes/docs.ts"
],
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": false,
"external": false
}
}
}