-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·48 lines (48 loc) · 1.45 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
{
"name": "plate-app",
"version": "1.0.0",
"description": "Plate Number Lookup",
"main": "src/index.tsx",
"scripts": {
"start": "webpack serve --open --hot --mode development",
"start:test": "webpack serve --mode development",
"build": "webpack --mode production",
"test:lib": "jest lib/**/*.spec.ts",
"test:ui": "./node_modules/.bin/playwright test tests/",
"test:ui:gen": "./node_modules/.bin/playwright codegen",
"test:ui:watch": "./node_modules/.bin/playwright test tests/ --ui",
"fetch": "node lib/source/index.js"
},
"dependencies": {
"axios": "^1.7.2",
"copy-webpack-plugin": "^12.0.2",
"jsdom": "^24.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.24.1",
"sass": "^1.77.7",
"sass-loader": "^14.2.1",
"sharp": "^0.33.4",
"style-loader": "^4.0.0",
"webpack-merge": "^6.0.1"
},
"devDependencies": {
"@playwright/test": "^1.45.1",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"css-loader": "^7.1.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^29.7.0",
"mocha": "^10.6.0",
"playwright": "^1.45.1",
"source-map-loader": "^5.0.0",
"ts-jest": "^29.2.1",
"ts-loader": "^9.2.3",
"typescript": "^5.5.3",
"webpack": "^5.40.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}