-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.76 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
{
"name": "messenger",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "webpack serve",
"build": "webpack build",
"start": "npm run build && node ./server.js --open",
"lint": "node_modules/.bin/eslint .",
"test": "mocha --require ts-node/register --require ./mocha-setup.js './src/**/*.test.ts'"
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all test lint:all",
"pre-push": "npm run other command",
"...": "..."
}
},
"keywords": [],
"author": "",
"license": "ISC",
"staticFiles": {
"staticPath": "static/",
"staticOutPath": "static/"
},
"devDependencies": {
"@types/chai": "4.3.4",
"@types/mocha": "10.0.1",
"@types/node": "18.11.18",
"@types/proxyquire": "1.3.28",
"@types/sinon": "10.0.13",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.48.2",
"chai": "4.3.7",
"css-loader": "6.7.3",
"eslint": "8.27.0",
"eslint-config-airbnb": "19.0.4",
"file-loader": "6.2.0",
"handlebars": "4.7.7",
"handlebars-loader": "1.7.3",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.3",
"jsdom": "21.0.0",
"less": "4.1.3",
"less-loader": "11.1.0",
"mini-css-extract-plugin": "2.7.2",
"mocha": "10.2.0",
"nanoid": "3.3.4",
"proxyquire": "2.1.3",
"sinon": "15.0.1",
"style-loader": "3.3.1",
"stylelint": "14.15.0",
"stylelint-config-recommended-less": "1.0.4",
"stylelint-config-standard": "29.0.0",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"typescript": "4.9.4",
"webpack": "5.75.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1",
"webpack-merge": "5.8.0"
},
"dependencies": {
"express": "4.18.2",
"express-handlebars": "6.0.6"
}
}