forked from hexlet-rus/runit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "runit",
"private": true,
"version": "1.0.0",
"description": "online editor for coding",
"engines": {
"node": ">=18.13.0"
},
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"build:backend": "yarn workspace backend run build",
"build:frontend": "DISABLE_ESLINT_PLUGIN=true yarn workspace frontend run build",
"build": "npm-run-all --parallel build:*",
"production": "yarn workspace backend run start:prod",
"start:backend": "yarn workspace backend run start:debug",
"start:frontend": "yarn workspace frontend run start",
"start": "npm-run-all --parallel start:*",
"test": "playwright test --trace on"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexlet-rus/runit.git"
},
"author": "",
"license": "Affero GPL 3.0",
"bugs": {
"url": "https://github.com/hexlet-rus/runit/issues"
},
"homepage": "https://github.com/hexlet-rus/runit#readme",
"dependencies": {
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"@nestjs/cli": "^9.2.0",
"@playwright/test": "^1.30.0",
"node-gyp": "^9.3.1"
}
}