forked from freeCodeCamp/chapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.6 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.6 KB
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
126
127
128
129
130
{
"name": "chapter",
"version": "1.0.0",
"description": "A self-hosted event management tool for nonprofits",
"main": "server/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev:server": "ts-node --files --transpile-only --project ./tsconfig.server.json ./server/index.ts",
"dev": "npx nodemon --watch 'server/**/*.ts' --exec 'npm run dev:server'",
"lint": "eslint './**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint './**/*.{ts,tsx,js,jsx}' --fix",
"next:build": "next build",
"nodemon": "npx nodemon",
"pretty": "prettier --write client/**/*.ts* server/**/*.ts",
"prod:server": "NODE_ENV=production ts-node --files --transpile-only ./server/index.ts",
"speccy:watch": "npx nodemon --watch 'api/swagger.json' --exec 'npm run speccy'",
"speccy": "npx speccy serve -p 8001 api/swagger.json",
"start": "npm run prod:server",
"test": "NODE_ENV=test npx jest --coverage --verbose",
"test:watch": "NODE_ENV=test npx jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freeCodeCamp/chapter.git"
},
"keywords": [
"chapter",
"meetup",
"open-source"
],
"author": "author@chapter.io",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/freeCodeCamp/chapter/issues"
},
"homepage": "https://github.com/freeCodeCamp/chapter#readme",
"dependencies": {
"@material-ui/core": "^4.5.2",
"@material-ui/icons": "^4.5.1",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-styled-components": "^1.10.6",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-response-errors": "^1.0.4",
"fork-ts-checker-webpack-plugin": "^1.5.1",
"isomorphic-fetch": "^2.2.1",
"module-alias": "^2.2.2",
"morgan": "^1.9.1",
"next": "^9.1.1",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-hook-form": "^3.28.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.1",
"sequelize-typescript": "^1.0.0",
"styled-components": "^4.4.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
},
"devDependencies": {
"@testing-library/react": "^9.3.0",
"@types/bluebird": "^3.5.28",
"@types/express": "^4.17.1",
"@types/jest": "^24.0.19",
"@types/morgan": "^1.7.37",
"@types/next": "^8.0.6",
"@types/node": "^12.11.2",
"@types/pg": "^7.11.2",
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"@types/styled-components": "^4.1.19",
"@types/validator": "^10.11.3",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-jest": "^22.20.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"nodemon": "^1.19.4",
"prettier": "^1.18.2",
"sequelize-cli": "^5.5.1",
"speccy": "^0.11.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"npm run pretty",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"watchPathIgnorePatterns": [
"/node_modules"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"testMatch": [
"/**/*.test.(ts|js|tsx|jsx)"
]
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"_moduleAliases": {
"server": "server",
"client": "client"
},
"engines": {
"node": "10.x",
"npm": ">= 6.0.0"
}
}