forked from Dryft-bits/ChronoFactorem
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
80 lines (80 loc) · 2.8 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
77
78
79
80
{
"name": "chronofactorem",
"version": "0.1.0",
"description": "Timetable maker-helper",
"homepage": "https://github.com/Dryft-bits/ChronoFactorem",
"author": "Dryft-bits",
"main": "server.js",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"config": "^3.3.7",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.13.7",
"npm-check-updates": "^11.8.3",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/node": "^7.18.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.18.10",
"@babel/plugin-proposal-do-expressions": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-bind": "^7.18.9",
"@babel/plugin-proposal-function-sent": "^7.18.6",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-proposal-logical-assignment-operators": "^7.18.9",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/plugin-proposal-pipeline-operator": "^7.18.9",
"@babel/plugin-proposal-throw-expressions": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-react-html-attrs": "^3.0.5",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"concurrently": "^7.3.0",
"cypress": "^10.6.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.19"
},
"scripts": {
"server": "nodemon server --exec babel-node",
"start": "node server --exec babel-node",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "NODE_ENV=test mocha --exit --recursive || true",
"cy": "cypress open",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dryft-bits/ChronoFactorem.git"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/Dryft-bits/ChronoFactorem/issues"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
}
}