-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.04 KB
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
{
"name": "fsa-ratings",
"version": "0.1.0",
"description": "FSA Ratings app for Accenture Next Gen Engineering tech test",
"main": "src/index.ts",
"type": "module",
"scripts": {
"tsc-watch": "tsc --watch",
"app": "nodemon src/build/index.js",
"start": "npx tsc && concurrently \"npm run tsc-watch\" \"npm run app\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infinityworks/iw-tech-test-ts.git"
},
"author": "Accenture Next Gen Engineering",
"license": "ISC",
"bugs": {
"url": "https://github.com/infinityworks/iw-tech-test-ts/issues"
},
"homepage": "https://github.com/infinityworks/iw-tech-test-ts#readme",
"dependencies": {
"concurrently": "^6.4.0",
"express": "^4.16.4",
"node-fetch": "^3.0.0",
"nodemon": "^3.1.9",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^29.5.14",
"@types/node": "^16.11.11",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
}
}