-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "url-shortner",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"dev-client": "react-scripts start",
"start": "node server.js",
"build": "react-scripts build",
"dev": "nodemon server.js",
"pretty": "prettier --write *"
},
"repository": "https://github.com/tanmayVaish/url-shortner.git",
"author": "tanmayVaish <tanmay777leon@gmail.com>",
"license": "MIT",
"dependencies": {
"express": "^4.17.2",
"pg": "^8.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^5.0.0",
"sequelize": "^7.0.0-alpha.4",
"shortid": "^2.2.16",
"valid-url": "^1.0.9"
},
"devDependencies": {
"autoprefixer": "^10.4.1",
"eslint": "^8.6.0",
"nodemon": "^2.0.15",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwind": "^4.0.0",
"tailwindcss": "^3.0.8"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}