-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.13 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
59
60
61
62
63
64
65
66
67
68
{
"name": "react-url-shortener",
"version": "1.0.0",
"description": "React url shortener",
"scripts": {
"prestart": "babel-node buildScripts/startMessage.js",
"start": "npm-run-all --parallel open:src lint:watch",
"open:src": "babel-node buildScripts/srcServer.js",
"lint": "esw webpack.config.* src/**/*.{js,jsx,ts,tsx} buildScripts --color",
"lint:watch": "npm run lint -- --watch",
"clean-dist": "rimraf ./dist && mkdir dist",
"prebuild": "npm-run-all clean-dist lint",
"build": "babel-node buildScripts/build.js",
"serve": "serve dist"
},
"author": "Justin Fowler",
"license": "MIT",
"dependencies": {
"express": "4.18.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"whatwg-fetch": "3.6.2"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/node": "^7.17.10",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.17.7",
"@types/node": "^17.0.31",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.10",
"compression": "^1.7.4",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-watch": "^8.0.0",
"fork-ts-checker-webpack-plugin": "^7.2.11",
"html-webpack-plugin": "5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"npm-run-all": "4.1.5",
"numeral": "2.0.6",
"open": "8.4.0",
"postcss-cli": "^9.1.0",
"postcss-loader": "^7.0.0",
"rimraf": "3.0.2",
"serve": "^14.0.1",
"style-loader": "3.3.1",
"tailwindcss": "^3.0.24",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"webpack": "^5.72.0",
"webpack-dev-middleware": "^5.3.1"
}
}