-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
109 lines (109 loc) · 3.05 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "solid-typescript-webpack",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc --noEmit && cross-env NODE_ENV=production webpack --mode production",
"coverage": "jest --coverage",
"dev": "cross-env NODE_ENV=development webpack serve --mode development",
"lint": "eslint --ext .ts,.tsx src/",
"start": "npm run dev -- --open",
"test": "cross-env NODE_ENV=test jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"clsx": "^1.1.1",
"core-js": "^3.17.1",
"regenerator-runtime": "^0.13.9",
"solid-js": "^1.1.2"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@testing-library/jest-dom": "^5.14.1",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"autoprefixer": "^10.3.3",
"babel-jest": "^27.1.0",
"babel-loader": "^8.2.2",
"babel-preset-solid": "^1.1.2",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-testing-library": "^4.12.0",
"eslint-webpack-plugin": "^3.0.1",
"fork-ts-checker-webpack-plugin": "^6.3.2",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.1.0",
"mini-css-extract-plugin": "^2.2.2",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"prettier": "^2.3.2",
"solid-jest": "^0.2.0",
"solid-refresh": "^0.2.2",
"solid-testing-library": "^0.2.1",
"style-loader": "^3.2.1",
"tailwindcss": "^2.2.9",
"terser-webpack-plugin": "^5.2.0",
"ts-node": "^10.2.1",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.4.2",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.0",
"webpack-merge": "^5.8.0"
},
"prettier": {
"singleQuote": true
},
"jest": {
"globals": {
"__MODE__": "none"
},
"roots": [
"src"
],
"preset": "solid-jest/preset/browser",
"moduleDirectories": [
"node_modules",
"src"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|svg)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"coveragePathIgnorePatterns": [
"assets",
".css.d.ts"
],
"setupFilesAfterEnv": [
"./jest.setup.ts"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
}
}