-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1020 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": "telp",
"version": "0.0.1-aplha",
"private": true,
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "concurrently 'npm run srv' 'npm run client' 'npm run preview'",
"start": "npm run -w ./packages/srv start",
"client": "npm run -w ./packages/stb dev",
"client-build": "npm run -w packages/stb build",
"preview": "npm run -w ./packages/stb preview",
"redis-docker": "docker run --name telp-redis -d redis",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles",
"load-testing": "npx artillery quick --count 1100 --num 10 http://localhost:3113/api/data/image/random"
},
"keywords": [
"art-card",
"art-history"
],
"author": "Equan P. (@junwatu)",
"license": "MIT",
"workspaces": [
"packages/srv",
"packages/stb"
],
"engines": {
"node": ">= 16.17.0"
},
"dependencies": {
"concurrently": "^7.5.0"
},
"devDependencies": {
"artillery": "^2.0.0-25"
}
}