forked from Bismuth-PTRI/ubiquitous-spoon
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.14 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
69
70
71
72
73
{
"name": "scratch",
"version": "1.0.0",
"description": "tbd",
"main": "src/index.js",
"scripts": {
"start": "cross-env NODE_ENV=development node server/server.js",
"dev": "cross-env NODE_ENV=development concurrently \"nodemon server/server.js\" \"webpack-dev-server --open\"",
"build": "cross-env NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mdigel/ubiquitous-spoon.git"
},
"author": "us",
"license": "ISC",
"bugs": {
"url": "https://github.com/mdigel/ubiquitous-spoon/issues"
},
"homepage": "https://github.com/mdigel/ubiquitous-spoon#readme",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.10.4",
"antd": "^4.3.3",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"dotenv-webpack": "^1.8.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"uuid": "^8.1.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.0",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"customize-cra": "^1.0.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"file-loader": "^6.0.0",
"less-loader": "^6.1.1",
"less-vars-to-js": "^1.3.0",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"react-app-rewired": "^2.1.6",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}