-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.47 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
45
46
47
48
49
50
51
52
53
54
{
"name": "simple-menu-app",
"version": "1.0.0",
"description": "Simple menu application",
"main": "src/index.ts",
"scripts": {
"build": "webpack",
"prod": "webpack --mode=production",
"watch": "webpack --watch",
"eslint": "eslint --cache --config ./.eslintrc.json --ext .ts src",
"test": "jest --passWithNoTests",
"coverage": "jest --passWithNoTests --coverage",
"start": "webpack serve --open"
},
"jest": {
"verbose": true,
"transform": {
".(ts|tsx)": "ts-jest"
}
},
"author": "Antonio de Sousa <antoniojsba@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/webpack": "^4.41.26",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.1.1",
"css-minimizer-webpack-plugin": "^1.2.0",
"eslint": "^7.21.0",
"eslint-plugin-jest": "^24.1.5",
"eslint-webpack-plugin": "^2.5.2",
"file-loader": "^6.2.0",
"html-loader": "^2.1.1",
"html-webpack-plugin": "5.2.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.9",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.3",
"ts-loader": "^8.0.17",
"typescript": "^4.2.3",
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}