-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
101 lines (101 loc) · 3.06 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
{
"name": "webolith",
"version": "1.0.0",
"description": "A word study app",
"main": "index.js",
"repository": {
"url": "[email protected]:domino14/webolith",
"type": "git"
},
"author": "César Del Solar",
"license": "GPL-3.0",
"browserslist": [
"> 1%"
],
"scripts": {
"test": "jest --coverage --verbose",
"dev:wds": "webpack-dev-server",
"jshint": "jshint djAerolith/flashcards/static/js/flashcards",
"eslint": "eslint djAerolith/wordwalls/static/js/wordwalls --ext .js,.jsx",
"prod:build": "rimraf djAerolith/static/dist && webpack --progress --config webpack.config-prod.babel.js"
},
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.6",
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@babel/register": "^7.25.7",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"babel-loader": "^8.2.5",
"compression-webpack-plugin": "^10.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-import-resolver-webpack": "^0.13.9",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"exports-loader": "^4.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"imports-loader": "^4.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jshint": "^2.13.5",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^3.0.2",
"sinon": "^14.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.3",
"text-loader": "0.0.1",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-stream": "^7.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@bufbuild/protobuf": "^1.10.0",
"@connectrpc/connect": "^1.5.0",
"@connectrpc/connect-web": "^1.5.0",
"backbone": "^1.4.1",
"bootbox": "^5.5.3",
"bootstrap": "^3.4.1",
"bootstrap-datepicker": "^1.9.0",
"immutable": "^4.1.0",
"jquery": "^3.6.0",
"js-cookie": "^3.0.1",
"moment": "^2.29.4",
"mustache": "^4.2.0",
"promise-polyfill": "^8.2.3",
"prop-types": "^15.8.1",
"qs": "^6.11.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^11.5.3",
"tablesorter": "^2.31.3",
"tether": "^2.0.0",
"underscore": "^1.13.4",
"whatwg-fetch": "^3.6.2"
},
"jest": {
"setupFiles": [
"./djAerolith/wordwalls/static/js/wordwalls/test/shim.js"
],
"moduleNameMapper": {
"^wordvaultapp/(.*)$": "<rootDir>/frontend/src/$1"
},
"testEnvironment": "jsdom"
}
}