-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "vestlus",
"version": "0.2.0",
"description": "A conversational app.",
"repository": {
"type": "git",
"url": "https://github.com/twilio-labs/vestlus"
},
"type": "module",
"keywords": [
"twilio",
"conversations",
"chat",
"vestlus"
],
"author": "Stan Lemon <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=20.0"
},
"scripts": {
"start": "concurrently -k npm:server:start npm:webpack:start",
"server:start": "node ./server.js",
"webpack:start": "NODE_ENV=development webpack serve",
"webpack:build": "NODE_ENV=production webpack",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"lint:format": "eslint --fix ."
},
"dependencies": {
"@stanlemon/server-with-auth": "^0.3.24",
"@stanlemon/webdev": "^0.2.6",
"@twilio-paste/core": "^20.18.1",
"@twilio-paste/icons": "^12.7.0",
"@twilio/conversations": "^2.6.0",
"dotenv": "^16.4.5",
"luxon": "^3.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"twilio": "^5.3.6"
},
"devDependencies": {
"@testing-library/react": "^16.0.1",
"@types/luxon": "^3.4.2",
"concurrently": "^9.1.0",
"nodemon": "^3.1.7"
}
}