-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.13 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
{
"name": "project_fender-rewards",
"version": "1.0.0",
"description": "Fender rewards program app built with Node, Express, and MongoDB",
"main": "index.js",
"scripts": {
"test:unit": "jest --config=jest.config.js",
"test:e2e": "cypress run --config-file=cypress.config.js",
"test": "concurrently \"npm run test:unit\" \"npm run test:e2e\"",
"start": "node functions/index.js",
"server": "nodemon functions/index.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/justinTsugranes/project_fender-rewards.git"
},
"keywords": [],
"author": "justinTsugranes",
"license": "MIT",
"bugs": {
"url": "https://github.com/justinTsugranes/project_fender-rewards/issues"
},
"homepage": "https://github.com/justinTsugranes/project_fender-rewards#readme",
"dependencies": {
"firebase-functions": "^4.4.1"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"concurrently": "^8.2.0",
"cypress": "^12.16.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0"
}
}