-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 934 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
41
42
43
44
45
{
"name": "Discworld Search",
"private": true,
"engines": {
"node": ">=20.0"
},
"source": [
"app/styles/main.scss",
"app/index.html"
],
"scripts": {
"start": "parcel",
"build": "parcel build --public-url /discworld-search"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.6.2",
"bootstrap": "^5.1.3",
"imagesloaded": "^5.0.0",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"parcel": "^2.6.2",
"parcel-reporter-static-files-copy": "^1.3.4",
"select2": "^4.1.0-rc.0",
"select2-bootstrap-5-theme": "^1.3.0",
"shufflejs": "^6.1.0",
"sticksy": "^0.2.0"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"eslintConfig": {
"env": {
"node": true,
"es6": true,
"browser": true
},
"parserOptions": {
"sourceType": "module"
},
"rules": {
"quotes": [
2,
"single"
]
}
}
}