-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.81 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.81 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
{
"name": "coding-companion",
"version": "1.0.0",
"description": "Group Scratch Project from Codesmith with The Goblin Sharks (gamifying your coding experience)",
"main": "webpack.config.js",
"scripts": {
"start": "NODE_ENV=production nodemon server/server.js ",
"build": "NODE_ENV=production webpack",
"dev": "concurrently \"NODE_ENV=development webpack serve --open\" \"NODE_ENV=development nodemon ./server/server.js\"",
"front": "NODE_ENV=development webpack serve --open",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint './**/*.{ts,tsx,js,jsx}'",
"lint-and-fix": "eslint './**/*.{ts,tsx,js,jsx}' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/The-Goblin-Sharks/Coding-Companion.git"
},
"author": "Easton Miller, Ian Davis, Thomas Kady, Yohan Jeon, Steven Min, Keely Timms, Anthony Vega, Lennon Stewart",
"license": "ISC",
"bugs": {
"url": "https://github.com/The-Goblin-Sharks/Coding-Companion/issues"
},
"homepage": "https://github.com/The-Goblin-Sharks/Coding-Companion#readme",
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.2",
"bcryptjs": "^2.4.3",
"concurrently": "^7.6.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"css-loader": "^6.7.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.20",
"pg": "^8.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"devDependencies": {
"bcrypt": "^5.1.0",
"eslint": "^8.34.0",
"eslint-plugin-react": "^7.32.2"
}
}