forked from jscomplete/learn-fullstack-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.33 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
45
46
47
48
{
"name": "learn-fullstack-javascript",
"version": "1.0.0",
"description": "learning to develop fullstack javascript",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node server.js --ignore public/",
"dev": "webpack -wd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vasigkal/FJS.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vasigkal/FJS/issues"
},
"homepage": "https://github.com/vasigkal/FJS#readme",
"dependencies": {
"express": "^4.17.1",
"mongodb": "^3.6.9",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/node": "^7.x",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@typescript-eslint/parser": "^4.25.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"nodemon": "^2.0.7",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0"
}
}