generated from CodelyTV/javascript-basic-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.62 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": "javascript-basic-skeleton",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"dev": "webpack serve --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"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": {
"@babel/core": "^7.13.13",
"@babel/preset-env": "^7.13.12",
"@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",
"babel-loader": "^8.2.2",
"core-js": "^3.9.1",
"css-loader": "^5.1.3",
"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",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.9",
"prettier": "^2.2.1",
"style-loader": "^2.0.0",
"webpack": "^5.27.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"browserslist": [
"defaults",
"not IE 11"
],
"dependencies": {
"http-server": "^0.12.3"
}
}