This repository has been archived by the owner on Dec 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 4.57 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
{
"name": "eventworks",
"react-addons-perf": "^15.4.2",
"license": "UNLICENSED",
"scripts": {
"postinstall": "node fix-maps.js && cd server && npm install",
"install:ci": "./script/maybe-npm-ci.sh",
"test": "jest",
"test:serial": "jest --runInBand",
"test:ci": "npm run lint && npm run test:serial && npm run lint:report",
"test:watch": "npm test -- --watch",
"compile:ts": "tsc --noEmit -p .",
"build": "npm run compile:ts && npm run build:web && npm run build:server",
"build:web": "cross-env NODE_ENV=production PARCEL_WORKERS=2 parcel build --public-url /app/js --no-cache --out-dir public/js ./web/src/bundle.ts",
"build:server": "./script/bundle-server.sh",
"build:deploy": "npm run build && npm run deploy",
"fast:deploy": "/bin/cp -f public/js/bundle.js* server/bin/public/js && npm run deploy",
"deploy": "./script/deploy-local.sh",
"deploy:init": "npm run build && ./script/deploy-init.sh",
"deploy:version": "./script/deploy-version.sh",
"watch": "concurrently --kill-others \"npm run watch:web\" \"npm run watch:server\"",
"watch:web": "cross-env NODE_ENV=development parcel watch --public-url /app/js --no-cache --no-hmr --no-autoinstall --out-dir public/js ./web/src/bundle.ts",
"watch:server": "tsc -p server --outDir server/bin --watch",
"start:server": "ts-node-dev -r tsconfig-paths/register --respawn server/src/server.ts",
"storybook:web": "start-storybook -p 6006",
"lint": "eslint -c .eslintrc.js --ext .ts --ext .tsx .",
"lint:report": "eslint -c .eslintrc.js -f json -o coverage/report.json --ext .ts --ext .tsx .",
"lint:fix": "eslint -c .eslintrc.js --ext .ts --ext .tsx . --fix",
"prettier": "prettier --write '**/*.ts*'",
"terraform": "cd terraform && terraform init && terraform apply",
"gen": "npm run gen:schema && npm run gen:schemaTypes && npm run gen:queryTypes",
"gen:schema": "apollo client:download-schema server/src/graphql/schema.gen.json",
"gen:schemaTypes": "graphql-codegen",
"gen:queryTypes": "apollo client:codegen --addTypename --target=typescript --outputFlat web/src/graphql/query.gen.ts",
"clean": "rm -rf server/bin",
"build-storybook": "build-storybook"
},
"dependencies": {
"@apollo/client": "^3.2.1",
"@reach/router": "^1.3.4",
"@types/react-sidebar": "^3.0.0",
"graphql": "^15.3.0",
"honeycomb-beeline": "^2.5.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-infinite-scroll-component": "^5.1.0",
"react-responsive": "^8.1.0",
"react-sidebar": "^3.0.2",
"styletron-engine-monolithic": "0.0.3",
"styletron-react": "^5.2.7",
"subscriptions-transport-ws": "^0.9.18",
"tslib": "^2.0.1",
"uuid": "^8.3.0"
},
"devDependencies": {
"@apollo/react-testing": "^4.0.0",
"@babel/core": "^7.11.6",
"@babel/preset-typescript": "^7.10.4",
"@graphql-codegen/cli": "^1.17.8",
"@graphql-codegen/typescript": "^1.17.9",
"@graphql-codegen/typescript-resolvers": "^1.17.9",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-essentials": "^6.0.21",
"@storybook/addon-links": "^6.0.21",
"@storybook/react": "^6.0.21",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.160",
"@types/reach__router": "^1.3.5",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"@types/react-responsive": "^8.0.2",
"@types/react-router": "^5.1.8",
"@types/styletron-react": "^5.0.2",
"@types/styletron-standard": "^2.0.1",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/eslint-plugin-tslint": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"apollo": "^2.30.3",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"concurrently": "^5.1.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"css-loader": "^5.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"jest": "^25.2.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.1",
"react-is": "^16.13.1",
"ts-jest": "^26.3.0",
"ts-node": "^8.8.1",
"ts-node-dev": "^1.0.0-pre.62",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"typescript": "^4.0.2"
},
"engines": {
"npm": "^6.0.0"
}
}