-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "pokemon-a-day",
"version": "0.0.1",
"description": "Digital Pokemon-a-day calendar",
"main": "index.js",
"engines": {
"node": ">=17.x <=19.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"author": "Gabe Klavans",
"license": "ISC",
"devDependencies": {
"@types/bootstrap": "^5.2.6",
"@types/jquery": "^3.5.16",
"@types/seedrandom": "^3.0.5",
"@types/shuffle-seed": "^1.1.0",
"@webpack-cli/generators": "^3.0.2",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.1",
"prettier": "^2.8.8",
"style-loader": "^3.3.2",
"tailwindcss": "^3.3.2",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3",
"webpack-pwa-manifest": "^4.3.0",
"workbox-webpack-plugin": "^6.5.4"
},
"dependencies": {
"@fingerprintjs/fingerprintjs": "^3.4.1",
"date-fns": "^2.29.3",
"favicons-webpack-plugin": "^6.0.0",
"jquery": "^3.6.4",
"pokedex-promise-v2": "^4.1.1",
"random": "^4.1.0",
"seedrandom": "^3.0.5",
"shuffle-seed": "^1.1.6",
"ts-key-enum": "^2.0.12"
}
}