-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.01 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.01 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
{
"name": "refacto",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "npm install && scripts/build.mjs",
"clean": "scripts/clean.mjs",
"lint": "scripts/lint.mjs && prettier --check .",
"lint:tsc": "scripts/lint.mjs",
"lint:prettier": "prettier --check .",
"start": "npm install && NODE_ENV=development scripts/start.mjs",
"test": "npm install && scripts/lint.mjs && prettier --check . && scripts/test.mjs",
"format": "npm run format --workspaces --quiet",
"test:backend": "npm test --workspace=@refacto/backend --quiet --",
"test:frontend": "npm test --workspace=@refacto/frontend --quiet --",
"test:frontend:watch": "npm test --workspace=@refacto/frontend --quiet -- --watchAll",
"test:e2e": "scripts/test.mjs --only-e2e"
},
"workspaces": [
"shared",
"backend",
"frontend",
"e2e"
],
"devDependencies": {
"lean-test": "2.x",
"prettier": "3.8.3",
"typescript": "6.0.x"
},
"config": {
"detect_chromedriver_version": true
}
}