-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 919 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": "groot",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "npm run start:dev",
"start:dev": "nodemon index.js",
"start:prod": "NODE_ENV=production node index.js",
"test": "jest --config jest.config.js --no-cache --detectOpenHandles --json --outputFile=./coverage/coverage.json"
},
"nodemonConfig": {
"ignore": [
"frontend/**"
]
},
"dependencies": {
"@gofynd/fdk-client-javascript": "^1.5.2",
"@gofynd/fdk-extension-javascript": "^0.7.12",
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"serve-static": "^1.15.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"axios-mock-adapter": "^1.21.2",
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"supertest": "^6.3.0"
},
"engines": {
"node": ">=16.x"
}
}