-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "slack-gallery-quiz",
"version": "2.1.0",
"description": "A quiz using Slack account images and asking the user to recognize the people",
"scripts": {
"build": "parcel build src/index.html --no-cache",
"deploy": "yarn build && firebase deploy",
"start": "yarn firebase serve --only functions,hosting",
"setup": "yarn install && cd functions && yarn install && yarn build && cd ..",
"test": "jest",
"tsc:watch": "tsc -w"
},
"author": "mjviljan",
"license": "MIT",
"dependencies": {
"@slack/client": "^5.0.2",
"dotenv": "^16.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"shuffle.ts": "^1.0.1"
},
"devDependencies": {
"@google-cloud/functions-framework": "^3.3.0",
"@parcel/transformer-less": "2.9.3",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"crypto-browserify": "^3.12.0",
"events": "^3.1.0",
"firebase": "^10.1.0",
"firebase-tools": "^12.4.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"less": "^4.1.3",
"os-browserify": "^0.3.0",
"parcel": "^2.9.3",
"path-browserify": "^1.0.0",
"prettier": "^3.0.0",
"stream-browserify": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}