forked from derpmagician/shorten
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "shortlinks",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server:dev": "webpack-dev-server",
"build": "cross-env NODE_ENV=production webpack",
"dev": "cross-env NODE_ENV=development nodemon backend/index.js --ignore frontend",
"start": "cross-env NODE_ENV=production node backend/index.js",
"postinstall": "npm run build",
"both": "concurrently \"npm run dev\" \"npm run server:dev\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"mongoose": "^6.2.0",
"morgan": "^1.10.0",
"nanoid": "^3.2.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"concurrently": "^7.0.0",
"css-loader": "^6.6.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"nodemon": "^2.0.15",
"postcss": "^8.4.6",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.19",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}