forked from freeCodeCamp/chapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 4.04 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
123
124
125
{
"name": "chapter",
"version": "0.0.1",
"description": "A self-hosted event management tool for nonprofits",
"main": "server/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "ts-node-dev -r tsconfig-paths/register --no-notify ./server/app.ts",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/.bin/typeorm",
"db:generate": "npm run ty./src/modules/chapters/pages/chapterPage.tsx:12:18peorm migration:generate -- -n",
"db:drop": "npm run typeorm schema:drop",
"db:seed": "ts-node -r tsconfig-paths/register ./db/generator/index.ts",
"db:migrate": "npm run typeorm migration:run",
"db:reset": "npm run db:drop && npm run db:migrate && npm run db:seed",
"both": "concurrently \"npm run dev\" \"cd client && npm run dev\"",
"build:client": "cd client && npm run build",
"start": "ts-node -r tsconfig-paths/register ./server/production.ts",
"production": "npm run build:client && npm start",
"test": "npx jest --coverage --verbose",
"test:watch": "npx jest --watchAll",
"postinstall": "node scripts/postInstall.js",
"lint": "eslint './**/*.{ts,tsx,js,jsx}'",
"lint-and-test": "npm run lint && npm run test",
"lint:fix": "eslint './**/*.{ts,tsx,js,jsx}' --fix",
"pretty": "prettier --write client/**/*.ts* server/**/*.ts",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freeCodeCamp/chapter.git"
},
"keywords": [
"chapter",
"meetup",
"open-source"
],
"author": "[email protected]",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/freeCodeCamp/chapter/issues"
},
"homepage": "https://github.com/freeCodeCamp/chapter#readme",
"dependencies": {
"@types/cors": "2.8.10",
"@types/jsonwebtoken": "8.5.1",
"apollo-server-express": "2.25.0",
"babel-plugin-module-resolver": "4.1.0",
"babel-plugin-transform-typescript-metadata": "0.3.2",
"class-validator": "0.13.1",
"cors": "2.8.5",
"cross-fetch": "3.1.4",
"dotenv": "10.0.0",
"express": "4.17.1",
"express-async-handler": "1.1.4",
"express-response-errors": "1.0.5",
"faker": "5.5.3",
"fork-ts-checker-webpack-plugin": "1.6.0",
"graphql": "15.5.0",
"is-docker": "2.2.1",
"jsonwebtoken": "8.5.1",
"morgan": "1.10.0",
"next": "10.2.3",
"node-fetch": "2.6.1",
"nodemailer": "6.6.1",
"pg": "8.6.0",
"pg-hstore": "2.3.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"reflect-metadata": "0.1.13",
"swagger-ui-express": "4.1.6",
"ts-node": "10.0.0",
"tsconfig-paths": "3.9.0",
"type-graphql": "1.1.1",
"typeorm": "0.2.32",
"typescript": "4.3.2"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "7.14.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.14.2",
"@testing-library/react": "11.2.7",
"@types/chai": "4.2.18",
"@types/express": "4.17.12",
"@types/faker": "5.5.5",
"@types/get-port": "4.2.0",
"@types/jest": "26.0.23",
"@types/next": "8.0.7",
"@types/node": "14.17.1",
"@types/nodemailer": "6.4.2",
"@types/pg": "8.6.0",
"@types/react": "17.0.8",
"@types/react-dom": "17.0.5",
"@types/sinon-chai": "3.2.5",
"@types/supertest": "2.0.11",
"@types/validator": "13.1.3",
"@typescript-eslint/eslint-plugin": "4.25.0",
"@typescript-eslint/parser": "4.25.0",
"chai": "4.3.4",
"concurrently": "6.2.0",
"eslint": "7.27.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-react": "1.1.7",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.24.0",
"get-port": "5.1.1",
"husky": "6.0.0",
"jest": "27.0.3",
"lint-staged": "11.0.0",
"prettier": "2.3.0",
"sinon": "11.1.1",
"sinon-chai": "3.7.0",
"supertest": "6.1.3",
"ts-jest": "27.0.2",
"ts-node-dev": "1.1.6"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"npm run pretty"
]
}
}