-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.08 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
{
"name": "messenger",
"source": "src/index.html",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --open",
"prebuild": "tsc --noEmit",
"build": "npm run prebuild && vite build",
"start": "npm run build && node server.js",
"formatter": "prettier --write .",
"preview": "vite preview",
"lint": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0 --fix",
"lint:css": "stylelint 'src/scss/**/*.scss'",
"lint:css:fix": "npm run lint:css -- --fix",
"prepare": "husky install",
"test": "mocha --no-warnings --exit"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/handlebars": "^4.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.0",
"@types/sinon": "^17.0.3",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"chai": "^5.1.1",
"eslint": "^8.9.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"handlebars": "^4.7.8",
"husky": "^8.0.3",
"jsdom": "^24.1.0",
"lint-staged": "^13.2.3",
"mocha": "^10.4.0",
"nodemon": "^3.0.3",
"prettier": "^2.8.8",
"sass": "^1.70.0",
"sinon": "^18.0.0",
"stylelint": "^16.2.1",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.1.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2",
"uuid": "^9.0.1",
"vite": "^5.0.8",
"vite-plugin-handlebars": "^2.0.0",
"vite-plugin-static-copy": "^1.0.1"
},
"dependencies": {
"dotenv": "^16.4.1",
"express": "^4.18.2"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --cache --fix"
],
"src/scss/**/*.scss": [
"stylelint 'src/scss/**/*.scss' --fix"
]
}
}