-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.9 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@atlassianlabs/figma-for-jira",
"version": "1.0.0",
"repository": "[email protected]:atlassian-labs/figma-for-jira.git",
"license": "MIT",
"private": false,
"scripts": {
"admin:build": "cd admin && npm run build",
"admin:start": "cd admin && npm start",
"admin:test": "cd admin && npm run test",
"build": "run-s build:app admin:build",
"build:app": "rimraf build && tsc --project ./tsconfig.build.json",
"db:generate": "prisma generate",
"db:migrate:dev": "prisma migrate dev",
"db:reset:dev": "prisma migrate reset",
"jira:jwt:symmetric:server:generate": "ts-node scripts/create-jira-server-symmetric-jwt.ts",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"precommit": "run-p format:check lint",
"prepare": "husky install",
"start": "run-p start:app admin:start",
"start:app": "tsnd -r dotenv-expand/config --inspect --watch='.env' --respawn -- src/server.ts",
"start:sandbox": "./scripts/start-sandbox.sh docker-compose.yml",
"start:sandbox:test": "./scripts/start-sandbox.sh docker-compose.integration.yml",
"start:tunnel": "./scripts/make-tunnel.sh",
"stop:sandbox": "./scripts/stop-sandbox.sh docker-compose.yml",
"stop:sandbox:test": "./scripts/stop-sandbox.sh docker-compose.integration.yml",
"test": "run-s test:unit test:it admin:test",
"test:it": "(dotenv -e .env.test -- prisma migrate reset -f) && (DOTENV_CONFIG_PATH=.env.test jest -c jest.config.integration.ts --runInBand)",
"test:it:ci": "run-s start:sandbox:test test:it stop:sandbox:test",
"test:unit": "DOTENV_CONFIG_PATH=.env.test jest -c jest.config.unit.ts"
},
"dependencies": {
"@prisma/client": "^5.1.1",
"ajv": "^8.12.0",
"atlassian-jwt": "^2.0.2",
"axios": "^1.6.0",
"core-js": "^3.36.0",
"dd-trace": "^4.17.0",
"express": "^4.18.2",
"pino": "^8.15.0",
"pino-http": "^8.4.0",
"prisma": "^5.1.1",
"stream-json": "^1.8.0",
"tslib": "^2.6.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/express": "^4.17.16",
"@types/jest": "^29.5.3",
"@types/node": "^20.14.12",
"@types/stream-json": "^1.7.7",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"dotenv-expand": "^10.0.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"nock": "^13.3.3",
"npm-run-all": "^4.1.5",
"pino-pretty": "^10.2.0",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"husky": {
"hooks": {
"pre-commit": "sh hooks/pre-commit"
}
},
"engines": {
"node": ">= 20.14.12"
},
"workspaces": [
"admin"
]
}