-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 976 Bytes
/
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
{
"name": "big-trip",
"version": "20.0.0",
"private": true,
"description": "Проект «Большое путешествие» от HTML Academy",
"type": "module",
"browserslist": [
"defaults"
],
"scripts": {
"lint": "eslint src/",
"build": "webpack --mode production",
"start": "webpack serve --mode development --open"
},
"devDependencies": {
"@babel/core": "7.22.10",
"@babel/preset-env": "7.22.10",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"babel-loader": "9.1.3",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.8.1",
"eslint": "8.47.0",
"eslint-config-htmlacademy": "9.1.1",
"html-webpack-plugin": "5.5.3",
"style-loader": "3.3.3",
"ts-loader": "9.4.4",
"typescript": "5.1.6",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
},
"packageManager": "[email protected]",
"volta": {
"node": "18.17.1"
},
"dependencies": {
"dayjs": "1.11.9"
}
}