-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.13 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
{
"name": "ci-automation",
"version": "1.0.0",
"dependencies": {
"@babel/polyfill": "7.10.1",
"isomorphic-fetch": "^2.2.1",
"dotenv-safe": "8.2.0"
},
"devDependencies": {
"@babel/cli": "7.10.1",
"@babel/core": "7.10.2",
"@babel/node": "7.10.1",
"@babel/preset-env": "7.10.2",
"@babel/preset-typescript": "7.10.1",
"@babel/register": "7.10.1",
"@types/babel__core": "7.1.9",
"@types/babel__preset-env": "7.9.0",
"@types/eslint": "7.2.0",
"@types/eslint-plugin-prettier": "3.1.0",
"@types/esm": "^3.2.0",
"@types/isomorphic-fetch": "^0.0.35",
"@types/prettier": "2.0.1",
"@types/webpack": "4.41.18",
"@types/webpack-merge": "4.1.5",
"@types/webpack-node-externals": "1.7.1",
"@types/webpack-plugin-serve": "0.10.0",
"@typescript-eslint/eslint-plugin": "2.21.0",
"@typescript-eslint/parser": "2.21.0",
"babel-loader": "^8.0.5",
"eslint": "6.7.2",
"eslint-config-airbnb": "17.1.1",
"eslint-config-prettier": "6.7.0",
"eslint-import-resolver-lerna": "1.1.0",
"eslint-import-resolver-typescript": "1.1.1",
"eslint-plugin-flowtype": "2.50.3",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-no-only-tests": "2.4.0",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-typescript": "0.14.0",
"esm": "^3.2.22",
"lint-staged": "9.1.0",
"pre-commit": "^1.2.2",
"prettier": "2.0.5",
"typescript": "3.9.5",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpack-merge": "4.2.2",
"webpack-node-externals": "1.7.2",
"webpack-plugin-serve": "0.12.1"
},
"license": "MIT",
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn prettier",
"eslint --fix",
"git add"
],
"*.yml": [
"prettier --write",
"git add"
]
},
"main": "index.js",
"pre-commit": "lint:staged",
"scripts": {
"b": "babel-node --extensions \".es6,.js,.es,.jsx,.mjs,.ts,.tsx\"",
"lint:staged": "lint-staged",
"prettier": "prettier --write",
"start": "yarn w ./src/removeJobs.ts",
"w": "yarn b webpackx.ts"
}
}