generated from CodelyTV/typescript-basic-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.73 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
59
60
61
{
"name": "typescript-basic-skeleton",
"version": "1.0.0",
"description": "",
"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 .ts,.html",
"lint:fix": "npm run lint -- --fix",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodelyTV/typescript-basic-skeleton.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodelyTV/typescript-basic-skeleton/issues"
},
"homepage": "https://github.com/CodelyTV/typescript-basic-skeleton#readme",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@testing-library/cypress": "^7.0.6",
"@testing-library/dom": "^7.31.2",
"@testing-library/jest-dom": "^5.13.0",
"@types/jest": "^27.0.3",
"css-loader": "^5.2.6",
"cypress": "^7.5.0",
"eslint": "^8.33.0",
"eslint-config-codely": "^2.1.3",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-jest": "^27.0.3",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.4",
"mini-css-extract-plugin": "^1.6.0",
"prettier": "^2.3.1",
"style-loader": "^2.0.0",
"ts-jest": "^27.0.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"browserslist": [
"defaults",
"not IE 11"
],
"dependencies": {
"http-server": "^0.12.3"
}
}