-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.48 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.48 KB
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
{
"name": "modulate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"engines": {
"node": ">=20.16.0"
},
"scripts": {
"build": "NODE_ENV=production node ./build/build.js",
"build:rust": "npm run build --rust",
"start:client": "NODE_ENV=development node ./build/build.js --watch",
"start:server": "ts-node-dev --respawn --transpile-only ./server/src/index.ts",
"start": "ts-node --transpile-only ./server/src/index.ts",
"test": "NODE_ENV=test node ./build/build.js --engine-test && npm run test --workspace=test",
"e2e": "NODE_ENV=test node ./build/build.js && npm run e2e --workspace=test",
"add-migration": "node server/scripts/add-migration",
"run-migrations": "node server/scripts/run-migrations",
"prettier": "prettier --write .",
"typecheck": "npm run typecheck --workspaces",
"rustfmt": "rustfmt worklets/**/*.rs",
"lint:eslint": "eslint . --ext=.ts,.tsx,.js",
"lint:rustfmt": "rustfmt worklets/**/*.rs --check"
},
"workspaces": [
"build",
"client",
"server",
"common",
"worklets",
"test"
],
"author": "Teemu Pääkkönen",
"license": "UNLICENSED",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-plugin-prettier": "^5.2.1",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"devDependencies": {
"prettier": "^3.3.3",
"ts-node-dev": "^1.1.8"
}
}