-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 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
{
"name": "songsmith",
"version": "1.0.0",
"description": "CSC307 Final Project",
"main": "index.js",
"type": "module",
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --passWithNoTests",
"coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"lintr": "npm run -w react-frontend lint",
"linte": "npm run -w express-backend lint",
"dev": "npm run dev --prefix packages/react-frontend",
"prettier": "npx prettier --write \"**/*.js\""
},
"jest": {
"transform": {}
},
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.3.0",
"bcrypt": "^5.1.1",
"cross-env": "^7.0.3",
"eslint": "^9.3.0",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"mongodb-memory-server": "^9.2.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"dotenv": "^16.4.5",
"jsonwebtoken": "^9.0.2",
"lint": "^1.1.2",
"react-router-dom": "^6.23.1"
},
"workspaces": [
"packages/express-backend",
"packages/react-frontend"
]
}