-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
89 lines (89 loc) · 2.71 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
{
"name": "bugzy_prealpha",
"version": "0.0.0",
"description": "A bugzilla client for Activity Stream",
"scripts": {
"prettier": "prettier --write \"src/**/*.{ts,tsx,js,jsx}\" --ignore-path .gitignore",
"prestart": "npm run prettier",
"start": "concurrently -k --kill-others-on-fail --names \"parcel,serve\" -c \"yellow,blue\" npm:parcel:dev npm:serve",
"start_prod": "node dist/server.js",
"parcel:dev": "parcel watch --no-cache",
"parcel:prod": "parcel build",
"serve": "wait-on file:./dist/server.js && nodemon dist/server.js",
"bundle": "npm run parcel:prod",
"deploy": "git checkout -B deploy && npm run bundle && git add -f dist",
"test": "npm run lint && mocha -r ts-node/register src/**/*.test.js",
"lint": "prettier --check \"src/**/*.{ts,tsx,js,jsx}\" --ignore-path .gitignore && eslint --ext=.js,.jsx,.ts,.tsx .",
"prepush": "npm run lint"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"body-parser": "1.20.2",
"express": "4.18.2",
"luxon": "3.3.0",
"request": "2.88.2"
},
"engines": {
"node": "19.x"
},
"targets": {
"content": {
"context": "browser",
"source": "src/content/index.html",
"distDir": "dist/content",
"publicUrl": "/",
"includeNodeModules": {
"body-parser": false,
"express": false,
"request": false
}
},
"server": {
"context": "node",
"engines": {
"node": "19.x"
},
"source": "src/server.ts",
"distDir": "dist"
}
},
"devDependencies": {
"@parcel/resolver-glob": "^2.9.3",
"@parcel/transformer-css": "^2.9.3",
"@parcel/transformer-sass": "^2.9.3",
"@types/body-parser": "1.19.2",
"@types/express": "4.17.17",
"@types/luxon": "3.3.0",
"@types/node": "18.15.11",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.7",
"@types/react-router-dom": "4.3.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "6.4.0",
"chai": "4.3.7",
"concurrently": "8.0.1",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-fetch-options": "0.0.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"mocha": "10.2.0",
"mozjexl": "1.1.6",
"nodemon": "2.0.22",
"parcel": "^2.9.3",
"prettier": "2.8.8",
"process": "0.11.10",
"query-string": "8.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "^5.0.0",
"react-select": "5.7.2",
"ts-node": "10.9.1",
"typescript": "4.7.4",
"wait-on": "^7.2.0"
}
}