-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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
{
"name": "2023_2_ond_team",
"description": "Frontend repository for OND team project PinSpire in VK technopark 2023",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"prestart": "npm run compile:templates",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"start": "node server",
"compile:templates": "handlebars $(find src/views -type f -name '*.hbs') -m -f ./src/templates.hbs.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "npm run lint",
"lint": "eslint ."
},
"browserslist": "> 0.25%, not dead",
"author": "",
"license": "ISC",
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.50.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-xo": "^0.43.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}