-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1009 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
36
37
{
"name": "@sanjo/tilemap-editor",
"type": "module",
"scripts": {
"development": "node development.js",
"build": "node build.js",
"test": "tsc --noEmit && jest && playwright test",
"serve": "python3 -m http.server 8000",
"deploy": "npm run build && firebase deploy --only hosting"
},
"exports": {
"./*": "./src/*"
},
"dependencies": {
"bootstrap": "^5.3.1",
"firebase": "^10.3.1",
"lodash-es": "^4.17.21",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.14",
"@babel/preset-typescript": "^7.22.11",
"@playwright/test": "^1.37.1",
"@types/bootstrap": "^5.2.6",
"@types/jest": "^29.5.4",
"@types/lodash-es": "^4.17.9",
"babel-jest": "^29.6.4",
"esbuild": "^0.19.2",
"esbuild-plugin-polyfill-node": "^0.3.0",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"prettier": "^3.0.3",
"ts-jest-resolver": "^2.0.1",
"typescript": "^5.2.2"
}
}