-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.99 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": "@metaquanta/tiling",
"version": "0.0.1",
"description": "render substitution tilings",
"homepage": "https://tilings.metaquanta.com",
"license": "AGPL-3.0",
"repository": "github:metaquanta/tilings",
"scripts": {
"build": "babel src --out-dir public --ignore 'src/**/*.test.js' --extensions '.ts' --copy-files",
"build:watch": "babel --watch src --out-dir public --ignore 'src/**/*.test.js' --extensions '.ts' --copy-files",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch --preserveWatchOutput",
"lint": "eslint --ext=ts,js src",
"format": "prettier --write *",
"serve": "es-dev-server --compatibility none --event-stream false --node-resolve --root-dir public/ --watch",
"test": "jest",
"test:watch": "jest --watch",
"watch": "npm-run-all --parallel build:watch typecheck:watch serve",
"precommit": "npm-run-all -s typecheck lint format test build",
"deploy": "rsync -a public/ nfshost:tilings.metaquanta.com/"
},
"jest": {
"transform": {
".ts": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"js",
"ts"
]
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-typescript": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"babel-plugin-add-import-extension": "^1.6.0",
"es-dev-server": "^2.1.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}