-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
120 lines (120 loc) · 4.1 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
{
"name": "ctp.apps",
"version": "0.2.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build --prod --prefix-paths",
"test": "npm run lint && nx run-many --all --target=test --codeCoverage --env=jsdom",
"heroku-postbuild": "nx build ctp.alumni.newsletter-bot --prod",
"deploy:ctp.alumni.newsletter-bot": "APP=NEWS NODE_ENV=production node ./dist/apps/ctp.alumni.newsletter-bot/main.js",
"deploy:ctp.alumni.totd-bot": "APP=TOTD NODE_ENV=production node ./dist/apps/ctp.alumni.newsletter-bot/main.js",
"deploy:ctp.alumni.weekly-tech-challenge": "APP=TECH_CHALLENGE NODE_ENV=production node ./dist/apps/ctp.alumni.newsletter-bot/main.js",
"test:all": "nx run-many --all --target=test --env=jsdom",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"release": "standard-version",
"prepare": "husky install",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected --target=test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"dep-graph:build": "nx dep-graph --file=apps/ctp.alumni.app/public/graph.html",
"help": "nx help"
},
"private": true,
"dependencies": {
"@chakra-ui/react": "^1.7.1",
"@emotion/styled": "^11.6.0",
"@slack/bolt": "^3.8.1",
"@svgr/webpack": "^6.1.2",
"core-js": "^3.19.1",
"document-register-element": "1.13.1",
"dotenv": "^10.0.0",
"framer-motion": "^5.3.0",
"gatsby": "4.1.4",
"gatsby-image": "3.11.0",
"gatsby-plugin-manifest": "4.1.3",
"gatsby-plugin-offline": "5.1.3",
"gatsby-plugin-react-helmet": "5.1.0",
"gatsby-plugin-sharp": "4.1.3",
"gatsby-plugin-svgr": "3.0.0-beta.0",
"gatsby-plugin-typescript": "4.1.2",
"gatsby-source-filesystem": "4.1.2",
"gatsby-transformer-sharp": "4.1.0",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"react-icons": "^4.3.1",
"regenerator-runtime": "0.13.9",
"sheetsql": "^0.1.7",
"tslib": "^2.3.1",
"webpack": "^5.64.0"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.0",
"@babel/preset-react": "7.16.0",
"@babel/preset-typescript": "7.16.0",
"@chakra-ui/gatsby-plugin": "^2.0.2",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-angular": "^15.0.0",
"@emotion/react": "^11.6.0",
"@jscutlery/semver": "^2.14.3",
"@nrwl/cli": "13.1.4",
"@nrwl/cypress": "13.1.4",
"@nrwl/eslint-plugin-nx": "13.1.4",
"@nrwl/gatsby": "^13.1.4",
"@nrwl/jest": "13.1.4",
"@nrwl/js": "13.4.1",
"@nrwl/node": "^13.4.1",
"@nrwl/react": "13.1.4",
"@nrwl/web": "13.1.4",
"@nrwl/workspace": "13.1.4",
"@testing-library/react": "12.1.2",
"@types/jest": "27.0.2",
"@types/node": "~16.11.7",
"@types/react": "17.0.34",
"@types/react-dom": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.3.1",
"@typescript-eslint/parser": "5.3.1",
"babel-jest": "^27.3.1",
"babel-plugin-module-resolver": "4.1.0",
"babel-preset-gatsby": "^2.1.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.2.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.27.0",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"prettier": "2.4.1",
"react-test-renderer": "^17.0.2",
"standard-version": "^9.3.2",
"ts-jest": "27.0.7",
"ts-node": "~10.4.0",
"tslint": "~6.0.0",
"typescript": "~4.4.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}