-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1009 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
{
"name": "sortdle",
"version": "1.0.0",
"description": "Guess five five-letter words, with a few extra rules...",
"browserslist": "> 0.5%, last 3 versions, not dead",
"private": true,
"scripts": {
"start": "parcel serve src/index.html",
"build": "parcel build src/index.html",
"test": "tsc --noEmit"
},
"author": "Matt (MattTheNub) <git@mattthenub.dev>",
"license": "GPL-3.0",
"devDependencies": {
"@parcel/config-default": "^2.3.2",
"@parcel/core": "^2.3.2",
"@parcel/transformer-sass": "2.3.2",
"@parcel/transformer-typescript-tsc": "^2.3.2",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@types/seedrandom": "^3.0.2",
"buffer": "^6.0.3",
"parcel": "^2.3.2",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"typescript": "^4.6.2"
},
"dependencies": {
"@popperjs/core": "^2.11.2",
"bootstrap": "^5.1.3",
"react": "^17.0.2",
"react-bootstrap": "^2.2.0",
"react-dom": "^17.0.2",
"seedrandom": "^3.0.5"
}
}