-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "fsa-ratings",
"version": "0.1.0",
"description": "FSA Ratings app for Infinity Works tech test",
"main": "src/index.ts",
"type": "module",
"scripts": {
"tsc-watch": "tsc --watch",
"app": "nodemon src/build/index.js",
"start": "yarn tsc && concurrently \"yarn tsc-watch\" \"yarn app\"",
"test": "ts-mocha -p src/tests/tsconfig.json **/tests/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infinityworks/iw-tech-test-ts.git"
},
"author": "Infinity Works Consulting",
"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": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.11",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"ts-mocha": "^8.0.0"
}
}