-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.32 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.32 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "conversionapi",
"version": "2.0.0",
"description": "A collection of conversions and calculations packaged neatly in an API",
"main": "app.js",
"type": "commonjs",
"scripts": {
"start": "node ./src/swagger.js",
"swagger-autogen": "node ./src/swagger.js",
"test": "jest",
"lint": "eslint"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheMrAnderson/ConversionAPI.git"
},
"author": "TheMrAnderson",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheMrAnderson/ConversionAPI/issues"
},
"homepage": "https://github.com/TheMrAnderson/ConversionAPI#readme",
"dependencies": {
"babel-jest": "^29.7.0",
"dotenv": "^16.6.1",
"express": "^4.22.1",
"express-rate-limit": "^6.11.2",
"helmet": "^6.2.0",
"jest": "^30.2.0",
"swagger-autogen": "^2.23.6",
"swagger-ui-express": "^4.6.3"
},
"devDependencies": {
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"nodemon": "^3.1.7"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"node_modules/**/node_modules"
],
"delay": "2500",
"env": {
"NODE_ENV": "development",
"PORT": 3000
}
}
}