-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
89 lines (89 loc) · 2.93 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": "web-conf",
"version": "3.2.0",
"description": "Web Developer Conference in Chengdu, China",
"keywords": [
"Web",
"developer",
"conference",
"China",
"Chengdu"
],
"author": "freeCodeCamp Chengdu community",
"license": "AGPL-3.0",
"homepage": "https://web-conf.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/FreeCodeCamp-Chengdu/Web-Conf.git"
},
"bugs": {
"url": "https://github.com/FreeCodeCamp-Chengdu/Web-Conf/issues"
},
"scripts": {
"prepare": "husky",
"test": "lint-staged && tsc --noEmit",
"clean": "rm -rf dist/ .parcel-cache/",
"start": "npm run clean && parcel source/index.html",
"pack-sw": "rm -f dist/sw.js.map && workbox generateSW",
"build": "npm run clean && parcel build source/index.html --public-url . && npm run pack-sw"
},
"lint-staged": {
"*.{js,mjs,ts,tsx}": "eslint --fix",
"*.{html,md,css,less,js,mjs,ts,tsx,json}": "prettier --write"
},
"dependencies": {
"boot-cell": "^2.0.0-beta.29",
"browser-unhandled-rejection": "^1.0.2",
"cell-router": "^3.0.0-rc.8",
"classnames": "^2.5.1",
"dom-renderer": "^2.4.4",
"html-to-image": "^1.11.11",
"iterable-observer": "^1.1.0",
"koajax": "^3.0.3",
"lodash.groupby": "^4.6.0",
"marked": "^14.1.4",
"mobx": "^6.13.5",
"mobx-i18n": "^0.6.0",
"mobx-restful": "2.0.0",
"web-cell": "^3.0.1",
"web-utility": "^4.4.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.2",
"@eslint/js": "^9.14.0",
"@parcel/config-default": "~2.12.0",
"@parcel/packager-raw-url": "~2.12.0",
"@parcel/transformer-less": "~2.12.0",
"@parcel/transformer-typescript-tsc": "~2.12.0",
"@parcel/transformer-webmanifest": "~2.12.0",
"@softonus/prettier-plugin-duplicate-remover": "^1.0.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/lodash.groupby": "^4.6.9",
"@types/node": "^20.17.6",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"parcel": "~2.12.0",
"postcss": "^8.4.47",
"postcss-modules": "^4.3.1",
"prettier": "^3.3.3",
"prettier-plugin-css-order": "^2.1.2",
"process": "^0.11.10",
"typescript": "~5.6.3",
"typescript-eslint": "^8.13.0",
"workbox-cli": "^7.3.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"plugins": [
"prettier-plugin-css-order",
"@softonus/prettier-plugin-duplicate-remover"
]
}
}