-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"name": "frontend-assignment",
"version": "1.0.0",
"description": "A small assignment for frontend developers at Schiphol",
"license": "ISC",
"author": "dipsaus9",
"main": "src/index.js",
"scripts": {
"build": "webpack",
"dev": "webpack serve",
"lint": "eslint \"./src/**/*.ts\"",
"lint:fix": "eslint --fix \"./src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "7.18.6",
"@testing-library/dom": "^8.19.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@types/testing-library__jest-dom": "5.14.5",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"babel-jest": "29.3.1",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.9.1",
"html-webpack-plugin": "^5.5.0",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"path": "^0.12.7",
"prettier": "^2.8.2",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"svg-inline-loader": "^0.8.2",
"ts-jest": "29.0.3",
"ts-loader": "9.4.2",
"typescript": "4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}