-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.01 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
74
75
76
{
"name": "todo",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-regular-svg-icons": "^5.9.0",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bulma": "^0.7.5",
"bulma-divider": "^0.2.0",
"concurrently": "^4.1.1",
"cors": "^2.8.5",
"email-templates": "^6.0.0",
"exceljs": "^1.13.0",
"express": "^4.17.1",
"fs": "0.0.1-security",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"ladda": "^2.0.1",
"md5": "^2.2.1",
"moment": "^2.24.0",
"mongoose": "^5.6.4",
"multer": "^1.4.2",
"node-cron": "^2.0.3",
"node-sass": "^4.12.0",
"node-sass-chokidar": "^1.3.5",
"nodemailer": "^6.3.0",
"npm-run-all": "^4.1.5",
"numeral": "^2.0.6",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-ladda": "^6.0.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"redux-thunk": "^2.3.0",
"validator": "^11.1.0"
},
"scripts": {
"start": "npm-run-all -p watch-css start-js server",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"server": "nodemon server/server.js",
"start-js": "react-scripts start",
"build-css": "node-sass-chokidar --include-path /src --include-path ./node_modules src/ -o src/ --watch --recursive",
"watch-css": "npm run build-css"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"nodemon": "^1.19.1",
"react-redux": "^7.1.0",
"redux": "^4.0.4"
}
}