-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.37 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
{
"name": "serverless-data-parser-tool-for-project-proposals",
"version": "1.0.0",
"description": "## Definition of Done - The user stories are tested with suitable unittests and end-to-end-tests - The tests are successful (in the green) - The user stories match the requirement specifications - The code is reviewed - The code is of good quality (e.g. approved by lint)",
"main": "backend/index.js",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"cypress": "^9.4.1",
"jest": "^27.4.7"
},
"scripts": {
"install": "cd front && npm install && cd .. && cd api && npm install",
"build": "cd front && npm run build && cd .. && cp -r front/build backend",
"start": "cd backend && npm start",
"start-front": "cd front && npm start",
"test": "jest --verbose",
"w_test": "cd api && npm run test && cd .. && cd front && npm run w_test",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ohtu-org/Serverless-data-parser-tool-for-project-proposals.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ohtu-org/Serverless-data-parser-tool-for-project-proposals/issues"
},
"homepage": "https://github.com/Ohtu-org/Serverless-data-parser-tool-for-project-proposals#readme"
}