-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.46 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
{
"name": "credilio-assignment",
"version": "0.0.0",
"private": true,
"scripts": {
"prestart": "tailwind build ./client/components/stylesheets/tailwind.css -c ./tailwind.config.js -o ./client/components/stylesheets/main.css",
"start": "NODE_ENV=development nodemon ./bin/www",
"start:prod": "NODE_ENV=production nodemon ./bin/www",
"clean": "rimraf dist/bundle/"
},
"dependencies": {
"axios": "^0.19.2",
"cookie-parser": "^1.4.5",
"debug": "~2.6.9",
"ejs": "~2.5.7",
"express": "~4.16.0",
"express-static-gzip": "^1.1.3",
"helmet": "^3.23.3",
"http-errors": "~1.6.2",
"morgan": "~1.9.0",
"puppeteer": "^5.4.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-icons": "^3.11.0",
"react-loader-spinner": "^3.1.14",
"react-router-dom": "^5.2.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"autoprefixer": "^10.0.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^2.1.1",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.14.1",
"sass-loader": "^10.0.4",
"tailwindcss": "^1.9.6",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0"
}
}