-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.44 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.44 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
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
{
"name": "webolith",
"version": "1.0.0",
"description": "A word study app",
"main": "index.js",
"repository": {
"url": "git@github.com:domino14/webolith",
"type": "git"
},
"author": "César Del Solar",
"license": "GPL-3.0",
"browserslist": [
"> 1%"
],
"scripts": {
"test": "jest --coverage --verbose",
"dev:wordwalls": "cd djAerolith/wordwalls && vite",
"build:wordwalls": "cd djAerolith/wordwalls && vite build",
"eslint": "cd djAerolith/wordwalls && eslint static/js/wordwalls --ext .js,.jsx,.ts,.tsx",
"prod:build": "npm run build:wordwalls"
},
"devDependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.28.0",
"@eslint/js": "^9.32.0",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/bootstrap": "^5.2.10",
"@types/immutable": "^3.8.6",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/underscore": "^1.13.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.32.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.1.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"react-test-renderer": "^19.1.1",
"rimraf": "^6.0.1",
"sinon": "^21.0.0",
"ts-jest": "^29.4.0",
"typescript-eslint": "^8.38.0",
"vite": "^7.0.6"
},
"dependencies": {
"@bufbuild/protobuf": "^1.10.0",
"@connectrpc/connect": "^1.5.0",
"@connectrpc/connect-web": "^1.5.0",
"bootstrap": "^5.3.7",
"bootstrap-icons": "^1.11.1",
"immutable": "^5.1.3",
"js-cookie": "^3.0.5",
"moment": "^2.30.1",
"prop-types": "^15.8.1",
"qs": "^6.14.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-dropzone": "^14.3.8",
"underscore": "^1.13.7"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"setupFiles": [
"./djAerolith/wordwalls/static/js/wordwalls/test/shim.ts"
],
"moduleNameMapper": {
"^wordvaultapp/(.*)$": "<rootDir>/frontend/src/$1",
"^sinon$": "<rootDir>/node_modules/sinon/lib/sinon.js"
},
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"tsconfig": "./djAerolith/wordwalls/tsconfig.json",
"isolatedModules": true
}
],
"^.+\\.(js|jsx)$": "babel-jest",
"^.+/gen/.+\\.js$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(sinon|@bufbuild)/)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testPathIgnorePatterns": [],
"globals": {
"ts-jest": {
"tsconfig": {
"module": "commonjs"
}
}
}
},
"type": "module"
}