forked from atlassian-archive/landkid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.58 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "landkid",
"version": "0.2.10",
"description": "CI Queue",
"main": "dist/index.js",
"contributors": [
"James Kyle <me@thejameskyle.com>",
"Luke Batchelor <batchelor.luke@gmail.com>",
"Samuel Attard <samuel.r.attard@gmail.com>"
],
"license": "MIT",
"bin": {
"landkid": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"test:unit": "jest",
"pretest:integration": "node tools/test-local.js",
"posttest:integration": "node tools/test-local.js --revert",
"test:integration": "cypress run --browser chrome --reporter junit",
"test:integration:watch": "cypress open",
"format": "prettier --write src/**/*.ts src/**/*.tsx",
"build": "yarn clean && yarn build:server && yarn build:ui",
"build:server": "tsc",
"build:ui": "cross-env OUTPUT_PATH=dist/static webpack --mode=production",
"start": "cross-env NODE_ENV=production node ./dist",
"dev": "yarn build:server && concurrently \"webpack-dev-server\" \"tsc -w\" \"nodemon ./dist --watch dist --watch config.js --watch rules --delay 1\"",
"precommit": "node tools/test-local.js --revert && lint-staged",
"migrate": "ts-node src/db/MigrationService.ts",
"tunnel": "./tools/tunnel.sh"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/connect-redis": "0.0.16",
"@types/express": "^4.16.0",
"@types/express-session": "^1.17.3",
"@types/express-winston": "^3.0.0",
"@types/faker": "^4.1.12",
"@types/jest": "^26.0.5",
"@types/joi": "^14.3.4",
"@types/node": "^15.0.2",
"@types/p-retry": "^2.0.0",
"@types/passport": "^1.0.6",
"@types/passport-oauth2": "^1.4.10",
"@types/react": "^16.7.5",
"@types/react-dom": "^16.0.9",
"@types/redis": "^2.8.28",
"@types/redlock": "^3.0.2",
"@types/umzug": "^2.2.2",
"cache-loader": "^1.2.5",
"concurrently": "^4.1.0",
"cypress": "^8.3.1",
"faker": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"httplease-asap": "^0.3.2",
"husky": "^0.14.3",
"jest": "^25.5.4",
"joi": "^14.3.1",
"lint-staged": "^5.0.0",
"nodemon": "^1.18.6",
"prettier": "^2.3.0",
"rimraf": "^2.6.2",
"rxjs-compat": "^6.3.3",
"sqlite3": "^5.0.0",
"ts-jest": "25.5.1",
"ts-loader": "^5.3.0",
"ts-node": "^9.1.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@atlaskit/pagination": "^8.0.5",
"@types/micromatch": "^4.0.1",
"atlassian-jwt": "^1.0.1",
"axios": "^0.21.4",
"body-parser": "^1.18.2",
"connect-redis": "^5.2.0",
"cross-env": "^5.2.0",
"date-fns": "^1.29.0",
"delay": "^4.3.0",
"emotion": "^10.0.27",
"express": "^4.16.2",
"express-session": "^1.17.1",
"express-winston": "^3.0.1",
"micromatch": "^4.0.2",
"passport": "^0.4.1",
"passport-oauth2": "^1.5.0",
"pg": "^8.2.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"redis": "^3.1.2",
"redlock": "^3.1.2",
"reflect-metadata": "^0.1.12",
"sequelize": "^4.44.0",
"sequelize-typescript": "^0.6.6",
"styled-components": "^3.2.6",
"typescript": "^4.2.4",
"ua-parser-js": "^0.7.24",
"umzug": "^2.2.0",
"winston": "^3.1.0"
},
"resolutions": {
"lodash": "^4.17.21",
"color-string": "^1.5.5",
"@types/sequelize": "^4.28.9",
"path-parse": "^1.0.7"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"*.ts": [
"prettier --write",
"git add"
],
"*.tsx": [
"prettier --write",
"git add"
]
}
}