-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 926 Bytes
/
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
{
"name": "cross-course-project-mathias-gausl--aug22-ft",
"version": "1.0.0",
"description": "",
"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",
"start": "npx live-server"
},
"author": "mg",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"cypress": "^13.3.3",
"eslint": "^8.52.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-jest": "^27.4.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"prettier": "3.0.3"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.html": [
"prettier --write"
],
"*.scss": [
"prettier --write"
]
},
"dependencies": {
"live-server": "^1.1.0"
}
}