forked from argos-ci/argos
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.62 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
{
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
"e2e:setup": "NODE_ENV=test npm run -w @argos-ci/database db:truncate && NODE_ENV=test npm run -w @argos-ci/database db:seed",
"e2e:start": "NODE_ENV=test playwright test",
"setup": "turbo run setup",
"procfile": "heroku local -f Procfile.dev -p 4001",
"webhook-proxy": "NODE_TLS_REJECT_UNAUTHORIZED=0 smee --url https://smee.io/SmH89Dx2HZ89wK7T --target https://api.argos-ci.dev:4001/github/event-handler",
"lint": "eslint .",
"check-types": "npx tsc --noEmit",
"format": "prettier --write .",
"heroku-postbuild": "npm run build"
},
"repository": "github:argos-ci/argos",
"engines": {
"node": "18"
},
"devDependencies": {
"@argos-ci/cli": "latest",
"@playwright/test": "^1.28.1",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.21",
"@swc/jest": "^0.2.23",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"clsx": "^1.2.1",
"eslint": "^8.29.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.2.0",
"smee-client": "^1.2.3",
"turbo": "^1.6.3",
"typescript": "^4.9.3"
},
"volta": {
"node": "18.12.1"
}
}