-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.7 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": "portfolio",
"version": "1.0.0",
"description": "Portfolio ",
"main": "server/server.js",
"engines": {
"node": "20.x"
},
"scripts": {
"start": "node server/server.js",
"start:dev": "cross-env NODE_ENV=development nodemon --watch ./client --watch ./server server.js -e js,ejs,scss,css,html",
"start:prod": "cross-env NODE_ENV=production nodemon --watch ./client --watch ./server server.js -e js,ejs,scss,css,html",
"sass:dev": "sass --watch ./client/sass:./client/src/css",
"sass:prod": "sass --watch ./client/sass:./client/dist/css --style=compressed",
"webpack": "npx webpack --no-cache --watch",
"test:frontend": "jest --config jest.frontend.config.js --coverage",
"test:backend": "jest --config jest.backend.config.js --coverage",
"test:all": "npm run test:frontend && npm run test:backend"
},
"author": "James Louis Le-Goff <[email protected]>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"gsap": "^3.12.1",
"i18next": "^23.11.2",
"i18next-fs-backend": "^2.3.1",
"i18next-http-middleware": "^3.5.0",
"imagesloaded": "^5.0.0",
"jest-environment-jsdom": "^29.7.0",
"jquery": "^3.7.0",
"loglevel": "^1.9.2",
"mongodb": "^6.5.0",
"nodemon": "^3.1.7"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"connect-livereload": "^0.6.1",
"cross-env": "^7.0.3",
"cypress": "^13.14.2",
"jest": "^29.7.0",
"livereload": "^0.9.3",
"sass": "^1.63.4",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4"
}
}