-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 845 Bytes
/
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
{
"name": "roguelike-game",
"version": "1.0.0",
"description": "A JS-based roguelike game that dynamically renders through DOM manipulation. The game is fully rendered with HTML and CSS.",
"author": "James Pound IV",
"license": "MIT",
"scripts": {
"build": "gulp build",
"format": "prettier --write '*.{json,stylelintrc}' 'src/**/*.{js,css,scss,html}'",
"start": "gulp serve"
},
"devDependencies": {
"@types/gulp": "^4.0.17",
"@types/gulp-header": "^2.0.4",
"@types/gulp-sass": "^5.0.4",
"browser-sync": "^3.0.3",
"del": "^7.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^9.1.0",
"gulp": "^5.0.0",
"gulp-header": "^2.0.9",
"gulp-sass": "^5.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
"prettier": "^3.3.3",
"sass": "^1.56.0",
"typescript": "^5.6.2"
}
}