-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 4.42 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "github-note-taker",
"version": "4.0.0",
"description": "A React app that you can browse Github repositories with.",
"repository": {
"type": "git",
"url": "https://github.com/craigstroman/github-notetaker.git"
},
"main": "server/index.js",
"scripts": {
"start": "NODE_ENV=production node ./build/index.js",
"scss": "sass server/views/scss/styles.scss --watch --style=compressed public/css/styles.css",
"js": "NODE_ENV=development webpack --config webpack.config.dev.ts --progress --watch",
"copy-files:server": "copyfiles -f ./server/views/*.pug ./build/views & copyfiles -f ./server/views/common/*.pug ./build/views/common & copyfiles ./.env ./build",
"copy-files:client": "copyfiles -f ./client/css/styles.css ./public/css & copyfiles -f ./client/js/libs/*.js ./public/js/libs & copyfiles -f ./client/fonts/bootstrap/*.* ./public/fonts/bootstrap",
"live:server": "NODE_ENV=development nodemon ./server/index.js --exec babel-node './server/index.js' ",
"prod:client": "NODE_ENV=production webpack --config webpack.config.prod.ts & npm run copy-files:client",
"prod:server": "babel -d ./build ./server -s & npm run copy-files:server"
},
"author": "Craig Stroman",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-async-to-generator": "^7.20.7",
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@babel/plugin-transform-regenerator": "^7.20.5",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/plugin-transform-typescript": "^7.20.13",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.20.13",
"@types/node": "^18.14.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-fontawesome": "^1.6.5",
"@types/react-redux": "^7.1.25",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.9",
"@types/websocket": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"babel-loader": "^9.1.2",
"copyfiles": "^1.2.0",
"css-loader": "^6.7.3",
"cuid": "^1.3.8",
"dotenv": "^8.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^2.5.2",
"node-env-file": "^0.1.8",
"node-sass": "^8.0.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"require-dir": "^0.3.1",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-middleware": "^6.0.1",
"webpack-hot-middleware": "^2.25.3"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.1",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@reduxjs/toolkit": "^1.6.1",
"@types/lodash": "^4.14.191",
"app-module-path": "^2.2.0",
"assert": "^1.4.1",
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"config": "^1.26.2",
"cookie-parser": "^1.4.3",
"cross-fetch": "^2.1.0",
"express": "^4.18.3",
"express-session": "^1.18.0",
"html-to-text": "^3.3.0",
"lodash": "^4.17.5",
"memorystore": "^1.6.7",
"morgan": "^1.8.2",
"npm": "^6.14.5",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.11.3",
"prop-types": "^15.6.1",
"pug": "^2.0.0-rc.4",
"query-string": "^6.0.0",
"querystring": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-paginate": "^8.1.5",
"react-redux": "^8.0.5",
"react-router": "^6.6.2",
"react-router-dom": "^6.6.2",
"react-router-redux": "^4.0.8",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"sequelize": "^6.37.1",
"striptags": "^2.2.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"unique-id-mixin": "^1.0.0"
},
"engines": {
"node": "18.3.0"
}
}