-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.63 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
48
49
50
51
52
{
"name": "fcc-metric-imperial-converter",
"version": "1.0.0",
"description": "A simple full-stack server-side rendered web application built on HTML, CSS (with Boostrap), vanilla Javascript (client-side), NodeJS and Express to convert metric units to imperial and vice versa for freeCodeCamps' Quality Assurance certification.",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "node -r dotenv/config --watch server.js dotenv_config_path=.env.dev",
"lint": "eslint src --ext .js,.jsx",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write --config .prettierrc.json",
"test": "mocha ./tests/ --ui tdd --exit"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mrarvind90/fcc-metric-imperial-converter.git"
},
"keywords": [
"freeCodeCamp",
"html",
"bootstrap",
"javascript",
"nodejs",
"expressjs",
"express-validator",
"cors"
],
"author": "Arvindran Kalidas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrarvind90/fcc-metric-imperial-converter/issues"
},
"homepage": "https://github.com/mrarvind90/fcc-metric-imperial-converter#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"mathjs": "^11.11.1",
"winston": "^3.10.0"
},
"devDependencies": {
"chai": "^4.3.8",
"chai-http": "^4.4.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3"
}
}