-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
61 lines (61 loc) · 1.72 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
{
"name": "react-dice-complete",
"version": "2.2.0",
"description": "Create dice for any game and roll for totals. Complete UI and Logic",
"main": "dist/react-dice-complete.js",
"files": [
"dist"
],
"scripts": {
"start": "node_modules/.bin/webpack-dev-server --config config/webpack.config.dev.js",
"build": "webpack --config config/webpack.config.prod.js",
"test": "echo \"No test specified\" && exit 0",
"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 <[email protected]> (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",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.13",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^8.0.0",
"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-loader": "^13.2.0",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17 || ^18",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
}