-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
executable file
·77 lines (77 loc) · 2.32 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
{
"name": "node",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "kyt dev",
"build": "kyt build",
"start": "node ./build/server/main.js",
"reviews": "babel-node pitchfork.js --reviews",
"scores": "babel-node pitchfork.js --scores",
"prod:build": "NODE_ENV=production kyt build",
"prod:stop": "forever stop pitchfork",
"prod:start": "NODE_ENV=production forever start -a forever.prod.json",
"prod": "yarn prod:build && yarn prod:stop && yarn prod:start"
},
"resolutions": {
"ts-invariant": "^0.5.0"
},
"dependencies": {
"@apollo/client": "3.3.11",
"@babel/runtime": "7.12.13",
"apollo-server-express": "2.21.0",
"bluebird": "3.7.2",
"cheerio": "1.0.0-rc.5",
"compression": "1.7.4",
"core-js": "3.8.3",
"express": "4.17.1",
"forever": "3.0.4",
"graphql": "14.1.1",
"graphql-tools": "4.0.4",
"kyt-runtime": "1.2.10",
"minimist": "1.2.5",
"morgan": "1.10.0",
"node-fetch": "2.6.1",
"pretty-lights": "0.0.19",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"react-window": "1.8.6",
"react-window-infinite-loader": "1.0.7",
"regenerator-runtime": "0.13.7",
"source-map-support": "0.5.19",
"sql-template-strings": "2.2.2",
"sqlite": "3.0.2"
},
"devDependencies": {
"@babel/core": "7.12.16",
"@babel/eslint-parser": "7.12.16",
"@babel/eslint-plugin": "7.12.13",
"@babel/node": "7.12.16",
"@types/react": "16.8.6",
"babel-plugin-module-resolver": "4.1.0",
"babel-preset-kyt-react": "1.2.6",
"eslint": "7.20.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-kyt": "1.4.3",
"eslint-config-prettier": "7.2.0",
"eslint-import-resolver-babel-module": "5.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.5",
"eslint-plugin-jest-formatting": "2.0.1",
"eslint-plugin-json": "2.1.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-kyt": "1.2.3",
"eslint-plugin-lodash": "7.1.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-pretty-lights": "0.0.23",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "26.6.3",
"kyt": "1.0.2",
"prettier": "2.2.1"
}
}