forked from CodelyTV/javascript-basic-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 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
40
41
42
43
44
{
"name": "javascript-basic-skeleton",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"dev": "vite --port=8080",
"build": "vite build",
"start": "http-server dist",
"lint": "eslint --ignore-path .gitignore . --ext .js,.html",
"lint:fix": "npm run lint -- --fix",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@testing-library/cypress": "^7.0.4",
"@testing-library/dom": "^7.30.1",
"@testing-library/jest-dom": "^5.11.10",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"core-js": "^3.9.1",
"cypress": "^6.8.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"vite": "^2.3.3",
"vite-plugin-legacy": "^2.1.0"
},
"dependencies": {
"http-server": "^0.12.3"
}
}