-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 3.21 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
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "microsoft-teams-app",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development nodemon",
"dev:prod-build": "nodemon --config nodemon.prod.json",
"dev:start-services": "docker-compose -f docker-compose.yml --project-name zeplin_mta up -d",
"dev:stop-services": "docker-compose --project-name zeplin_mta down",
"prebuild": "touch .env && cp .env src/client/.env",
"build": "NODE_ENV=production next build src/client && tsc --project src/server/tsconfig.json --sourceMap",
"test": "ENV_FILE=.env.test NODE_ENV=test jest",
"tunnel": "ngrok http 3000 --host-header=localhost:3000",
"build:package": "scripts/build_package.sh",
"start": "pm2 startOrReload pm2.json --no-daemon",
"lint": "eslint \"./**/*{.ts,.tsx}\"",
"postinstall": "patch-package",
"audit-fix": "HUSKY_SKIP_HOOKS=1 dev-tools npm-audit-fix --production --team-reviewers dx",
"prepare": "./scripts/install_husky.sh",
"pre-commit": "lint-staged",
"pre-push": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeplin/microsoft-teams-app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zeplin/microsoft-teams-app/issues"
},
"homepage": "https://github.com/zeplin/microsoft-teams-app#readme",
"dependencies": {
"@fluentui/react-northstar": "^0.50.0",
"@hapi/joi": "^17.1.1",
"@microsoft/teams-js": "^1.11.0",
"@newrelic/pino-enricher": "^1.1.1",
"@sentry/browser": "^5.22.3",
"@sentry/node": "^5.22.3",
"@zeit/next-source-maps": "0.0.4-canary.1",
"@zeplin/sdk": "1.21.0",
"axios": "^1.6.7",
"bull": "^3.16.0",
"chalk": "^4.1.0",
"cls-hooked": "^4.2.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "7.0.0",
"http-status-codes": "^1.4.0",
"http-terminator": "^3.2.0",
"mixpanel": "^0.13.0",
"mongoose": "7.6.7",
"newrelic": "8.14.0",
"next": "^12.0.5",
"patch-package": "^6.2.2",
"pino": "^8.17.2",
"pm2": "^5.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^2.5.14",
"redis": "^3.1.2",
"redlock": "^4.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@testing-library/react": "^10.4.7",
"@types/bull": "^3.14.0",
"@types/cls-hooked": "^4.3.3",
"@types/express": "^4.17.7",
"@types/hapi__joi": "^17.1.4",
"@types/jest": "^26.0.5",
"@types/node": "^14.0.21",
"@types/react": "^16.9.42",
"@types/redis": "^2.8.25",
"@types/redlock": "^4.0.1",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@zeplin/eslint-config": "^2.2.0",
"eslint": "^8.3.0",
"eslint-plugin-react": "^7.27.1",
"husky": "^7.0.0",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"nock": "^13.0.3",
"nodemon": "^3.1.0",
"supertest": "^4.0.2",
"ts-node": "^8.10.2",
"typescript": "^4.5.4"
},
"lint-staged": {
"**/*{.ts,.tsx}": "eslint --fix --max-warnings 0"
},
"jest": {
"projects": [
"src/client/jest.config.js",
"src/server/jest.config.js"
]
}
}