-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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": "msc-project",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server\" \"cd client && npm start\"",
"start": "node app.js",
"server": "nodemon app.js",
"test": "jest"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"http-errors": "~1.6.3",
"javascript-lp-solver": "^0.4.24",
"jest": "^29.7.0",
"morgan": "~1.9.1",
"mysql2": "^3.9.7",
"nanoid": "^5.0.7",
"nodemon": "^3.1.4",
"pug": "^2.0.4",
"winston": "^3.14.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@playwright/test": "^1.45.3",
"@types/node": "^22.1.0",
"babel-jest": "^29.7.0",
"concurrently": "^8.2.2",
"netlify-cli": "^17.34.3",
"prettier": "^3.3.0"
},
"jest": {
"transform": {
"^.+\\.[tj]sx?$": "babel-jest"
},
"testEnvironment": "node",
"transformIgnorePatterns": [
"node_modules/(?!(nanoid)/)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"\\.spec\\.ts$"
]
}
}