-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
40 lines (40 loc) · 907 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
29
30
31
32
33
34
35
36
37
38
39
40
{
"title": "Snow Goat",
"name": "snow-goat",
"version": "0.0.1",
"description": "Home of ServiceNow's Greatest of all Time",
"type": "module",
"keywords": [
"snow",
"goat",
"servicenow"
],
"homepage": "https://snowgo.at",
"license": "MIT",
"author": "Tommy Ryan",
"repository": {
"type": "git",
"url": "https://github.com/tallboy/snowgo.at"
},
"scripts": {
"start": "parcel ./index.ejs --open",
"clean": "del dist",
"prebuild": "npm run clean",
"build": "parcel build ./index.ejs",
"lint": "eslint .",
"lint-fix": "eslint --fix ."
},
"browserslist": "defaults",
"dependencies": {
"bootstrap": "5.1.3",
"font-awesome": "4.7.0"
},
"devDependencies": {
"del-cli": "^5.1.0",
"eslint": "^9.9.0",
"parcel": "^2.12.0",
"parcel-transformer-ejs": "^1.0.1",
"prettier": "^3.3.3",
"sharp": "^0.31.3"
}
}