-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.4 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
{
"name": "challengeapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"dev": "nodemon server/index.ts",
"test": "jest --runInBand --forceExit --detectOpenHandles --verbose false",
"build": "next build && tsc --project tsconfig.server.json && npm run copy_sql_queries && npm run copy_migrations",
"codegen": "node codegen.js && prettier --write ./server/queries/**/*.ts",
"copy_sql_queries": "copyfiles server/queries/**/*.sql production-server/",
"copy_migrations": "copyfiles db/migrations/**.sql ./production-server",
"clean": "rm -rf .next production-server",
"deepclean": "rm -rf .next production-server node_modules",
"start": "NODE_ENV=production node production-server/server/index.js",
"precommit": "lint-staged",
"migrate": "npm run build && node production-server/server/migrations.js"
},
"author": "",
"license": "ISC",
"lint-staged": {
"*.{js,css}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"prettier --write",
"tslint --fix",
"jest --runInBand --forceExit --detectOpenHandles --verbose false --findRelatedTests",
"git add"
]
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cookie-parser": "^1.4.1",
"@types/express": "4.16.0",
"@types/jsonwebtoken": "^7.2.8",
"@types/lodash.camelcase": "4.3.4",
"@types/moment-timezone": "0.5.9",
"@types/next": "7.0.3",
"@types/node": "10.12.0",
"@types/passport": "^1.0.0",
"@types/passport-facebook": "^2.1.9",
"@types/pg": "7.4.11",
"@types/prop-types": "15.5.6",
"@types/react": "16.4.18",
"@types/react-dom": "16.0.9",
"@types/react-modal": "3.2.1",
"@types/react-redux": "6.0.9",
"@types/redux": "3.6.0",
"@types/styled-components": "4.0.1",
"@types/web-push": "^3.3.0",
"@zeit/next-typescript": "1.1.1",
"babel-plugin-styled-components": "1.8.0",
"babel-plugin-transform-define": "1.3.0",
"bcrypt": "^3.0.3",
"cookie-parser": "^1.4.3",
"express": "4.16.4",
"final-form": "4.10.0",
"fork-ts-checker-webpack-plugin": "0.4.10",
"fp-ts": "1.9.0",
"husky": "1.1.2",
"io-ts": "1.3.1",
"io-ts-reporters": "0.0.21",
"jsonwebtoken": "^8.3.0",
"lodash.camelcase": "4.3.0",
"moment": "2.22.2",
"moment-timezone": "0.5.23",
"next": "7.0.2",
"next-images": "1.0.1",
"nodemon": "1.18.8",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"pg": "7.5.0",
"pg-connection-string": "2.0.0",
"pg-parameters": "0.2.3",
"postgrator": "3.7.0",
"prop-types": "15.6.2",
"react": "16.5.2",
"react-dom": "16.5.2",
"react-final-form": "3.6.7",
"react-modal": "3.6.1",
"react-redux": "5.0.7",
"react-table-drag-select": "0.3.1",
"redux": "4.0.1",
"redux-devtools-extension": "2.13.5",
"redux-thunk": "2.3.0",
"styled-components": "4.0.2",
"typesafe-actions": "2.0.4",
"typescript": "3.1.3",
"web-push": "^3.3.3"
},
"devDependencies": {
"@types/jest": "^23.3.7",
"copyfiles": "2.1.0",
"jest": "23.6.0",
"jest-dom": "2.1.1",
"jest-styled-components": "6.3.1",
"lint-staged": "7.3.0",
"mocha": "5.2.0",
"mockery": "2.1.0",
"prettier": "1.14.3",
"react-testing-library": "5.2.3",
"ts-jest": "23.10.4",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"tslint-config-prettier": "1.15.0"
}
}