-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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
{
"name": "primadoro",
"version": "1.0.0",
"description": "Pomodoro timer with logging",
"main": "server/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --exec babel-node server/index.js",
"watch": "webpack --mode development -w",
"build-prod": "webpack --mode production",
"start-prod": "npm run build-prod && NODE_ENV=production node server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cmayer153/primadoro.git"
},
"keywords": [
"pomodoro"
],
"author": "cmayer153",
"license": "ISC",
"bugs": {
"url": "https://github.com/cmayer153/primadoro/issues"
},
"homepage": "https://github.com/cmayer153/primadoro#readme",
"dependencies": {
"@material-ui/core": "^4.11.3",
"axios": "^0.21.1",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"luxon": "^1.26.0",
"mongoose": "^5.11.16",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react": "^17.0.1",
"react-cookie": "^4.0.3",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/node": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.2",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
}
}