-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
53
54
55
56
57
58
{
"name": "agency.noroff.dev",
"version": "1.0.0",
"description": "Frontend web application for the Noroff Agency API",
"main": "index.js",
"scripts": {
"test": "npm run test-unit && npm run test-e2e-cli",
"test-unit": "jest",
"test-e2e": "cypress open",
"test-e2e-cli": "cypress run",
"format": "prettier --write src/**/*.js",
"lint": "eslint src/**/*.js",
"lint-fix": "eslint src/**/*.js --cache --fix",
"build": "vite build",
"watch": "vite",
"build-preview": "vite preview",
"prepare": "husky install",
"dev": "vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NoroffFEU/agency.noroff.dev.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/NoroffFEU/agency.noroff.dev/issues"
},
"homepage": "https://github.com/NoroffFEU/agency.noroff.dev#readme",
"dependencies": {
"bootstrap": "^5.2.3",
"dotenv": "^16.0.3",
"jsdoc": "^4.0.0",
"run": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.19.4",
"@testing-library/cypress": "^10.0.1",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.2.0",
"babel-jest": "^29.7.0",
"cypress": "^13.6.2",
"eslint": "^8.31.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-jest": "^27.6.1",
"husky": "^8.0.3",
"jest": "^29.2.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^15.2.0",
"prettier": "^2.8.2",
"sass": "^1.57.1",
"vite": "^4.0.4"
}
}