-
Notifications
You must be signed in to change notification settings - Fork 580
/
Copy pathpackage.json
71 lines (71 loc) · 2.15 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
{
"name": "chat",
"version": "1.0.0",
"description": "A chat app for Mike's Enterprise TS course",
"repository": "https://github.com/mike-north/typescript-courses/",
"author": "Mike North ([email protected])",
"license": "NOLICENSE",
"private": true,
"browserslist": "> 0.5%, last 2 versions, not dead",
"dependencies": {
"@parcel/core": "^2.10.1",
"@parcel/ts-utils": "^2.10.1",
"date-fns": "^2.30.0",
"execa": "^8.0.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.1",
"http-error": "workspace:*",
"json-server": "^0.17.4",
"parcel": "^2.10.0",
"pkg-up": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.1"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@parcel/config-default": "^2.10.1",
"@parcel/optimizer-data-url": "^2.10.1",
"@parcel/packager-ts": "^2.10.1",
"@parcel/transformer-inline-string": "^2.10.1",
"@parcel/transformer-typescript-tsc": "^2.10.1",
"@parcel/transformer-typescript-types": "^2.10.1",
"@types/express": "^4.17.19",
"@types/json-server": "^0.14.5",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"babel-jest": "^29.7.0",
"dtslint": "^4.2.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^0.21.0",
"jest": "^26.0.0",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"postcss-nesting": "^12.0.1",
"postcss-preset-env": "^9.2.0",
"postcss-purgecss": "^5.0.0",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3",
"tsd": "^0.29.0",
"typescript": "5.3.0-beta"
},
"scripts": {
"build": "yarn parcel build index.html",
"dev": "node ./server/index.mjs",
"lint": "yarn eslint src server tests --ext .js,.ts,.jsx,.tsx,.mjs,.mts -c ./.eslintrc.js",
"test": "yarn test-jest",
"test-jest": "yarn jest tests",
"typecheck": "yarn tsc -P ."
},
"engines": {
"node": ">=16.0.0"
},
"volta": {
"node": "18.18.2",
"yarn": "3.6.4"
}
}