-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 3.39 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
{
"name": "cindy-next",
"version": "1.0.2",
"description": "packaging site for lateral thinking",
"repository": {
"type": "git",
"url": "git://github.com/heyrict/cindy-realtime.git"
},
"engines": {
"npm": ">=5",
"node": ">=8"
},
"author": "heyrict<[email protected]>",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development next",
"prettify": "prettier --write '**/*.js' '**/*.tsx' '**/*.ts'",
"build": "NODE_ENV=production next build",
"start": "NODE_ENV=production next start",
"predev": "npm run i18n:compile",
"prebuild": "npm run i18n:compile",
"export-schema": "gq http://localhost:8000/graphql -H \"X-Cindy-Admin-Secret: $ADMIN_SECRET\" --introspect > generated/schema.graphql; echo \"const typeDefs=\\``cat generated/schema.graphql`\\`;\nexport default typeDefs;\" > generated/typeDefs.js",
"export-graphql-types": "apollo codegen:generate -c ./apollo.config.js --target typescript generated",
"clean-graphql-types": "rm -r `find graphql -name generated`",
"i18n:extract": "formatjs extract 'messages/**/*.ts' --format simple --out-file lang/en.json && NODE_ENV=development node scripts/update-lang.js",
"i18n:compile": "formatjs compile-folder --format simple lang compiled-lang",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.9.0",
"@formatjs/intl-pluralrules": "^4.0.3",
"@formatjs/intl-relativetimeformat": "^8.0.3",
"@multiavatar/multiavatar": "^1.0.5",
"@popperjs/core": "^2.11.5",
"apollo-upload-client": "^17.0.0",
"date-fns": "^2.30.0",
"deepmerge": "^4.2.2",
"dequal": "^2.0.3",
"dompurify": "^2.3.6",
"fnv-plus": "^1.2.12",
"graphql": "^15.4.0",
"graphql-ast-types-browser": "^1.0.2",
"hoist-non-react-statics": "^3.3.0",
"isomorphic-unfetch": "^3.0.0",
"jsdom": "^19.0.0",
"markdown-it": "^13.0",
"markdown-it-emoji": "^2.0.0",
"next": "^13.4",
"pluralize": "^8.0.0",
"ra-data-graphql": "^3.19.11",
"react": "^18.2",
"react-admin": "^4.0.1",
"react-datepicker": "^4.18.0",
"react-dom": "^18.0",
"react-fast-compare": "^3.2.0",
"react-intl": "^6.0.5",
"react-popper": "^2.2.5",
"react-portal": "^4.2.2",
"react-redux": "^7.2.8",
"react-select": "^5.2.2",
"react-toastify": "^8.2.0",
"react-waypoint": "^10.0.1",
"redux": "^4.1.2",
"redux-saga": "^1.0.2",
"reselect": "^4.0.0",
"stringcase": "^4.3.1",
"styled-system": "^5.1.5",
"subscriptions-transport-ws": "^0.11.0"
},
"devDependencies": {
"@formatjs/cli": "^5.0.2",
"@formatjs/swc-plugin": "^1.3.2",
"@types/cookie": "^0.3.3",
"@types/dompurify": "^0.0.33",
"@types/enzyme": "^3.9.3",
"@types/jest": "^27.4.0",
"@types/markdown-it": "^0.0.8",
"@types/markdown-it-emoji": "^2.0.2",
"@types/node": "^17.0.8",
"@types/pluralize": "^0.0.29",
"@types/react": "^18.0",
"@types/react-datepicker": "^4.15.0",
"@types/react-dom": "^18.0",
"@types/react-portal": "^4.0.4",
"@types/react-redux": "^7.1.0",
"@types/styled-system": "^5.0.0",
"babel-loader": "^8.0.6",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"jest": "^27.5.0",
"prettier": "^2.5.1",
"raw-loader": "^4.0.2",
"svg-url-loader": "^2.3.2",
"typescript": "^4.7.4"
}
}