This repository has been archived by the owner on Oct 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
113 lines (113 loc) · 3.52 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
110
111
112
113
{
"name": "solid-rollup-boilerplate",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"coverage": "jest --coverage",
"lint": "eslint --ext .ts,.tsx src/",
"open:coverage": "npm run coverage && open-cli ./coverage/lcov-report/index.html",
"start": "rollup -c -w",
"test": "jest"
},
"dependencies": {
"chart.js": "^2.9.4",
"classcat": "^4.1.0",
"lodash.throttle": "^4.1.1",
"router5": "^8.0.1",
"router5-plugin-browser": "^8.0.1",
"solid-js": "^0.23.1",
"solid-typefu-router5": "^0.14.5"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-strip": "^2.0.0",
"@rollup/plugin-url": "^6.0.0",
"@testing-library/dom": "^7.28.1",
"@testing-library/jest-dom": "^5.11.6",
"@types/gapi": "0.0.39",
"@types/jest": "^26.0.17",
"@types/lodash.throttle": "^4.1.6",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-solid": "^0.23.0",
"core-js": "^3.8.1",
"cross-env": "^7.0.3",
"cssnano": "^4.1.10",
"dom-expressions": "^0.24.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-dom": "^3.6.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-local": "^1.0.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"jest": "^26.6.3",
"jest-environment-jsdom-sixteen": "^1.0.3",
"postcss-url": "^8.0.0",
"prettier": "^2.2.1",
"rollup": "^2.34.2",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-gzip": "^2.5.0",
"rollup-plugin-html2": "git+https://github.com/MrFoxPro/rollup-plugin-html2.git",
"rollup-plugin-imagemin": "^0.4.1",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-manifest-json": "^1.5.1",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-svgo": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^4.2.0",
"sass": "^1.30.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2",
"typescript-plugin-css-modules": "^3.0.1"
},
"jest": {
"globals": {
"ts-jest": {
"babelConfig": true
}
},
"testMatch": [
"<rootDir>/tests/**/*.ts?(x)"
],
"roots": [
"./"
],
"preset": "ts-jest",
"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>/tests/mocks/fileMock.js",
"\\.(css|less|scss)$": "<rootDir>/tests/mocks/styleMock.js"
},
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"coveragePathIgnorePatterns": [
"assets",
".css.d.ts"
],
"setupFilesAfterEnv": [
"./config/jest.setup.ts"
]
}
}