-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
103 lines (103 loc) · 2.96 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
103
{
"name": "@airtasker/spot",
"version": "1.8.1",
"author": "Francois Wouts, Leslie Fung",
"bin": {
"spot": "./bin/run"
},
"bugs": "https://github.com/airtasker/spot/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.2",
"ajv": "^6.12.6",
"assert-never": "^1.2.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"fs-extra": "^9.1.0",
"inquirer": "^8.0.0",
"js-yaml": "^4.1.0",
"qs": "^6.10.1",
"randomstring": "^1.2.1",
"ts-morph": "^8.2.0",
"typescript": "^4.2.4",
"validator": "^13.6.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@stoplight/spectral": "^5.9.1",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/fs-extra": "^9.0.11",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.23",
"@types/js-yaml": "^4.0.1",
"@types/moxios": "^0.4.11",
"@types/qs": "^6.9.6",
"@types/randomstring": "^1.1.6",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.4",
"@types/supertest": "^2.0.11",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"core-js": "^3.12.1",
"css-loader": "^4.3.0",
"eslint": "^7.26.0",
"eslint-plugin-jest": "^24.3.6",
"html-webpack-plugin": "^4.5.2",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"mini-css-extract-plugin": "^1.6.0",
"mobx": "^6.3.0",
"nock": "^13.0.11",
"prettier": "^2.3.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"redoc": "^2.0.0-rc.53",
"styled-components": "^4.4.1",
"supertest": "^6.1.3",
"ts-jest": "^26.5.6",
"ts-loader": "^8.1.0",
"webpack": "^4.44.2",
"webpack-cli": "^4.5.0"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"bin",
"build",
"index.d.ts",
"index.js",
"npm-shrinkwrap.json",
"oclif.manifest.json"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"homepage": "https://github.com/airtasker/spot",
"license": "MIT",
"oclif": {
"commands": "./build/cli/src/commands",
"bin": "spot",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "airtasker/spot",
"scripts": {
"build-docs": "webpack --config ./docs/webpack.config.js",
"build": "tsc",
"build:watch": "tsc --watch",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf build; tsc && oclif-dev manifest && yarn build-docs && oclif-dev readme",
"test": "jest -w 4",
"ci:test": "jest --config=jest.ci.config.js --ci -w 4",
"lint:check": "yarn prettier:check && yarn eslint:check",
"eslint:check": "eslint . --ext .js,.ts,.tsx",
"prettier:check": "prettier --list-different \"**/*.js\" \"**/*.ts\" \"**/*.tsx\"",
"lint:fix": "yarn prettier:fix && yarn eslint:fix",
"eslint:fix": "eslint . --fix --ext .js,.ts,.tsx",
"prettier:fix": "prettier --write \"**/*.js\" \"**/*.ts\" \"**/*.tsx\""
}
}