-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.9 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
{
"name": "battle-tracker",
"author": "Chris Reynolds <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/jazzsequence/DnD-Battle-Tracker/issues"
},
"version": "0.3.1",
"description": "A simple battle tracking system for Dungeons & Dragons written in JavaScript to track initiative and damage.",
"repository": {
"type": "git",
"url": "git+https://github.com/jazzsequence/DnD-Battle-Tracker.git"
},
"homepage": "https://battletracker.jazzsequence.com",
"keywords": [
"dnd",
"dungeons",
"and",
"dragons",
"initiative",
"javascript"
],
"scripts": {
"start": "react-scripts start",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"dev": "concurrently --prefix name \"npm run start\" \"npm run watch\"",
"watch": "gulp watch",
"build": "npm run build:css && react-scripts build",
"build:css": "gulp build",
"start:win32": "browser-sync start --server --files '**/*.css, **/*.html, **/*.js, !node_modules/**/*' --directory --port 7777 --browser \"C:\\Program Files\\Firefox Developer Edition\\firefox.exe\"",
"start:darwin:linux": "browser-sync start --server --files '**/*.css, **/*.html, **/*.js, !node_modules/**/*' --directory --port 7777 --browser 'Firefox Developer Edition'"
},
"devDependencies": {
"browser-sync": "^3.0.2",
"concurrently": "^8.2.2",
"del": "^7.1.0",
"gulp": "^4.0.2",
"gulp-sass": "^5.1.0",
"node-sass": "^9.0.0",
"react-scripts": "^5.0.1",
"run-script-os": "^1.1.6"
},
"dependencies": {
"gh-pages": "^6.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}