-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.64 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
53
54
55
56
57
58
{
"name": "algoverse",
"version": "1.0.0",
"description": "algo question game",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production nodemon server/server.js",
"build": "cross-env NODE_ENV=production webpack",
"dev": "concurrently \"cross-env NODE_ENV=development webpack serve\" \"cross-env NODE_ENV=development node server/server.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algoverse1/AlgoVerse.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/algoverse1/AlgoVerse/issues"
},
"homepage": "https://github.com/algoverse1/AlgoVerse#readme",
"dependencies": {
"axios": "^0.25.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.17.2",
"pg": "^8.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^6.2.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.3",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"dotenv": "^14.3.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.4.7",
"mini-css-extract-plugin": "^2.5.2",
"nodemon": "^2.0.15",
"sass": "^1.49.0",
"sass-loader": "^12.4.0",
"scss-loader": "^0.0.1",
"style-loader": "^3.3.1",
"supertest": "^6.2.2",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3"
}
}