-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 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
{
"name": "restaurant",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"dev": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"lint": "npx eslint src test",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src test --check",
"prettier:fix": "npm run prettier -- --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Karol Wolski",
"license": "ISC",
"devDependencies": {
"@types/aos": "^3.0.4",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.43.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"image-webpack-loader": "^8.1.0",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^2.8.8",
"ts-loader": "^9.4.3",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"focus-trap": "^7.4.3",
"aos": "^3.0.0-beta.6",
"venobox": "^2.0.4"
}
}