-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "wikiverse",
"version": "3.0.0",
"scripts": {
"test": "jest",
"client-dev": "parcel public/index.html --open",
"server-dev": "nodemon server.js",
"seed": "node server/seed.js",
"start": "parcel build public/index.html && node server.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"morgan": "^1.10.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sequelize": "^6.37.7",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@testing-library/react": "^13.4.0",
"babel-jest": "^27.5.1",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.37.5",
"jest": "^27.5.1",
"nodemon": "^3.1.10",
"parcel": "^2.15.0",
"process": "^0.11.10",
"react-test-renderer": "^18.3.1"
}
}