forked from oslabs-beta/YESQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.74 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "yesql",
"homepage": "https://oslabs-beta.github.io/YESQL/",
"version": "1.0.0",
"description": "",
"main": "./build/bundle.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=production node api/index.js",
"dev": "cross-env NODE_ENV=development concurrently \"webpack serve --open\" \"nodemon api/index.js\"",
"build": "NODE_ENV=production webpack"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"concurrently": "^8.2.2",
"css-loader": "^6.10.0",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"nodemon": "^3.1.0",
"react-bootstrap": "^2.10.2",
"sass-loader": "^14.1.1",
"style-loader": "^3.3.4",
"typescript": "^5.3.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.1",
"babel-loader": "^9.1.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-redux": "^9.1.0",
"react-router": "^6.22.3",
"react-router-dom": "^6.22.2",
"reactflow": "^11.10.4",
"sass": "^1.71.1",
"ts-node": "^10.9.2",
"url-loader": "^4.1.1"
}
}