-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.69 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.69 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
{
"name": "toolshed_react",
"version": "1.2.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production npm run start:prod || npm run start:dev",
"prestart:prod": "npm install",
"start:prod": "cd client && npm run start:prod",
"wrongstart:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"seed": "sequelize db:seed:all",
"fullseed": "npm-run-all start:prod seed",
"build": "npm install && cd client && npm run build "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Elli360/Project3.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Elli360/Project3/issues"
},
"homepage": "https://github.com/Elli360/Project3#readme",
"dependencies": {
"@babel/core": "^7.24.8",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-private-property-in-object": "^7.24.7",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"cd": "^0.3.3",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"if-env": "^1.0.4",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"nodemon": "^2.0.20",
"path": "^0.12.7",
"run-all": "^1.0.1",
"sass": "^1.52.3",
"semantic-ui-react": "^2.1.3",
"sequelize": "^6.21.0",
"sequelize-cli": "^6.4.1"
},
"devDependencies": {
"@babel/core": "^7.24.8",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-private-property-in-object": "^7.24.7",
"@babel/preset-env": "^7.24.8"
}
}