-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.33 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
42
43
44
45
46
47
{
"name": "vcolesdev-request-header-microservice",
"version": "0.0.1",
"main": "src/index.js",
"author": "Vanessa Coles",
"license": "MIT",
"description": "An FCC Backend Challenge",
"homepage": "https://github.com/freeCodeCamp/boilerplate-project-timestamp#readme",
"keywords": [
"node",
"express",
"freeCodeCamp"
],
"scripts": {
"start": "node ./build/index.js",
"dev": "npm run build && nodemon ./src/index.ts && tsc -w",
"watch": "tsc -w",
"build": "npx tsc"
},
"dependencies": {
"cors": "^2.8.0",
"express": "^4.12.4"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/node": "^7.23.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/plugin-transform-object-rest-spread": "^7.23.4",
"@babel/plugin-transform-runtime": "^7.23.9",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.20",
"date-fns": "^3.3.1",
"dotenv": "^16.4.5",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"bugs": {
"url": "https://github.com/freeCodeCamp/freeCodeCamp/issues"
}
}