-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
87 lines (87 loc) · 2.85 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
{
"name": "golden-key",
"version": "0.1.0",
"description": "A bootstrap project for mern stack applications",
"scripts": {
"lint": "eslint src/**",
"build:server": "tsc ./src/server/**.* --outDir ./build/server --esModuleInterop && tsc ./src/server/**/**.* --outDir ./build/server --esModuleInterop",
"start:server": "nodemon --exec ts-node ./src/server/**.*",
"build:client": "parcel build --dist-dir ./build/client ./src/client/index.html --public-url ./static/",
"start:client": "parcel watch --dist-dir ./build/client ./src/client/index.html --public-url ./static/",
"build": "npm run build:server && npm run build:client",
"start:dev": "npm run lint && concurrently \"npm run start:server\" \"npm run start:client\"",
"start": "node ./build/server/index.js",
"test": "nyc mocha --require ts-node/register --jsx --recursive test/*.* --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FRickReich/golden-key.git"
},
"keywords": [],
"author": "F. Rick Reich",
"license": "MIT",
"bugs": {
"url": "https://github.com/FRickReich/golden-key/issues"
},
"homepage": "https://github.com/FRickReich/golden-key#readme",
"devDependencies": {
"@parcel/transformer-sass": "^2.3.2",
"@types/chai-http": "^4.2.0",
"@types/cookie-parser": "^1.4.2",
"@types/csurf": "^1.11.2",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/js-cookie": "^3.0.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@types/redis": "^4.0.11",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"crypto-browserify": "^3.12.0",
"eslint": "^8.10.0",
"events": "^3.3.0",
"mocha": "^9.2.2",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"nyc-config-tsx": "^0.1.0",
"parcel": "^2.3.2",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"sinon": "^13.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"string_decoder": "^1.3.0",
"ts-node": "^10.6.0",
"typescript": "^4.6.2",
"url": "^0.11.0",
"util": "^0.12.4"
},
"dependencies": {
"axios": "^0.26.1",
"body-parser": "^1.19.2",
"concurrently": "^7.0.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"js-cookie": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"log4js": "^6.4.2",
"mongoose": "^6.2.4",
"puppeteer": "^13.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^6.2.2",
"react-router-dom": "^6.2.2",
"sass": "^1.49.9"
}
}