-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "weatherwise",
"version": "1.0.0",
"description": "A weather application",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon server.js",
"start": "webpack serve --open",
"build": "webpack",
"test": "mocha --exit --timeout 0 'tests/**/**/*.test.js'",
"unittest": "mocha --exit --timeout 0 'tests/unit/**/*.test.js'",
"inttest": "mocha --exit --timeout 0 'tests/integration/endpoints/*.integration.test.js'"
},
"keywords": [],
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"babel-cli": "^6.26.0",
"babel-loader": "^9.1.3",
"babel-preset-env": "^1.7.0",
"chai": "^5.1.1",
"css-loader": "^7.1.2",
"esmock": "^2.6.7",
"favicons-webpack-plugin": "^6.0.1",
"html-webpack-plugin": "^5.6.0",
"joi": "^17.13.3",
"mini-css-extract-plugin": "^2.9.1",
"mocha": "^10.7.3",
"mock-req-res": "^1.2.1",
"sinon": "^19.0.2",
"style-loader": "^4.0.0",
"supertest": "^7.0.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"author": "",
"license": "ISC",
"dependencies": {
"buffer": "^6.0.3",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"nodemon": "^3.1.4",
"process": "^0.11.10",
"redis": "^4.7.0"
}
}