-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.04 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
{
"name": "react-dice-complete",
"version": "2.3.2",
"description": "Create dice for any game and roll for totals. Complete UI and Logic",
"main": "dist/react-dice-complete.js",
"files": [
"dist"
],
"scripts": {
"start": "webpack serve --config config/webpack.config.dev.js",
"build": "webpack --config config/webpack.config.prod.js",
"typecheck": "tsc --noEmit -p tsconfig.app.json",
"typecheck:test": "tsc --noEmit -p tsconfig.test.json",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "npm run build",
"docs": "webpack --config config/webpack.config.docs.js"
},
"typings": "dist/ReactDice.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/AdamTyler/react-dice-complete.git"
},
"author": "Adam Tyler <adam.tyler@utexas.edu> (http://adam-tyler.com)",
"keywords": [
"die",
"board game",
"rpg",
"dice",
"react",
"javascript",
"roll",
"rolls",
"animation"
],
"license": "ISC",
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.9",
"autoprefixer": "^10.4.13",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"jsdom": "^29.1.1",
"mini-css-extract-plugin": "^2.6.1",
"postcss-loader": "^7.0.1",
"postcss-preset-env": "^7.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-refresh-typescript": "^2.0.8",
"sass": "^1.69.0",
"sass-loader": "^17.0.0",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"vitest": "^4.1.9",
"webpack": "^5.74.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.4"
},
"peerDependencies": {
"react": "^16.8.0 || ^17 || ^18"
}
}