-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.53 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
49
50
51
52
53
54
{
"name": "chisonnumber",
"version": "1.0.0",
"description": "full stack queue tracking app",
"main": "index.js",
"scripts": {
"start": "node ./server.js",
"front-end-dev": "nodemon --inspect ./server.js",
"back-end-dev": "nodemon --inspect --ignore client/ ./server.js",
"test": "jest --runInBand --silent",
"test:e2e": "jest --testPathPattern e2e.test.js --runInBand --silent",
"test:unit": "jest --testPathIgnorePatterns e2e.test.js --runInBand --silent",
"test:ci": "start-server-and-test 3000",
"lint": "prettier --write . && eslint --fix ."
},
"keywords": [
"redis",
"socketio"
],
"engines": {
"node": ">=14"
},
"author": "Michael Salaverry",
"license": "GPL-3.0-or-later",
"repository": {
"url": "https://github.com/barakplasma/in-person-queue"
},
"dependencies": {
"@godaddy/terminus": "^4.9.0",
"dotenv": "^16.0.0",
"ioredis": "^5.0.3",
"open-location-code": "https://github.com/google/open-location-code/tarball/1796878d947c6e281e383e69bbd0821f82db9566",
"socket.io": "^4.1.3"
},
"devDependencies": {
"@types/ioredis": "^4.27.1",
"@types/jest": "^27.0.1",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-jest": "^24.4.0",
"prettier": "2.3.2",
"jest": "^27.2.0",
"nodemon": "^2.0.12",
"playwright": "^1.20.2",
"start-server-and-test": "^1.14.0"
},
"browserslist": [
"defaults",
"not IE 11",
"not dead",
"maintained node versions"
]
}