-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 KB
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
{
"name": "frontend-developer-test",
"description": "Gumtree UK frontend developer test project",
"version": "3.0.0",
"engines": {
"node": ">=10.15.3"
},
"repository": {
"type": "git",
"url": "git@github.com:gumtreeuk/rockpaperscissors.git"
},
"scripts": {
"dev": "webpack-dev-server --mode development",
"lint": "eslint . --ext .js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@babel/core": "7.20.5",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "7.20.2",
"babel-loader": "^9.1.0",
"core-js": "^3.26.1",
"css-loader": "^6.7.3",
"eslint": "8.29.0",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"mini-css-extract-plugin": "^2.7.2",
"node-sass": "^8.0.0",
"regenerator-runtime": "^0.13.11",
"sass-loader": "^13.2.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"license": "UNLICENSED"
}