-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.13 KB
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
{
"name": "todo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "Gheorghita Cristea",
"license": "ISC",
"scripts": {
"clean": "rm dist/main.js",
"dev": "webpack serve",
"start": "node server.js",
"build": "webpack --mode production"
},
"dependencies": {
"express": "^4.17.1",
"firebase": "^8.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.14.5",
"autoprefixer": "^10.3.0",
"babel-loader": "^8.0.5",
"css-loader": "^5.2.6",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"html-webpack-plugin": "^5.3.2",
"postcss": "^8.3.5",
"postcss-cli": "^8.3.1",
"postcss-loader": "^6.1.1",
"prettier": "^2.3.2",
"style-loader": "^3.0.0",
"webpack": "^5.49.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}