-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
121 lines (121 loc) · 3.22 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
121
{
"name": "sources",
"version": "0.0.0",
"private": true,
"browserslist": [
">5%"
],
"scripts": {
"prestart": "tsc && npm run static-files && parcel build src/views/index.html --out-dir ./dist/views/static",
"start": "node dist/app.js",
"dev": "concurrently 'nodemon' 'parcel watch src/views/index.html --no-autoinstall --out-dir ./dist/views/static' 'npm run static-files:watch' --names '💻,⚛️,📦' --prefix name",
"test": "NODE_ENV='test' jest --forceExit",
"create-data": "ts-node ./scripts/create-data.ts",
"static-files": "ts-node ./scripts/copy-static-files.ts",
"static-files:watch": "ts-node ./scripts/copy-static-files.ts watch"
},
"nodemonConfig": {
"watch": [
"src"
],
"ignore": [
"src/views/"
],
"ext": "ts",
"exec": "tsc && node ./bin/www"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"no-debugger": 0
}
},
"prettier": {
"editorconfig": true,
"overrides": [
{
"files": "*.{js,jsx,ts,tsx}",
"options": {
"singleQuote": true,
"trailingComma": "es5",
"semi": false
}
}
]
},
"dependencies": {
"@types/cpx": "1.5.0",
"@types/knex": "0.15.0",
"@types/serve-favicon": "2.2.30",
"apollo-cache-inmemory": "1.3.9",
"apollo-client": "1.9.2",
"apollo-link-http": "1.5.5",
"apollo-server-express": "1.3.6",
"body-parser": "1.18.3",
"concurrently": "4.0.1",
"cookie-parser": "1.4.3",
"cpx": "1.5.0",
"debug": "4.1.0",
"dotenv": "6.1.0",
"express": "4.16.4",
"express-session": "1.15.6",
"faker": "4.1.0",
"glamor": "2.20.40",
"glamorous": "4.13.1",
"global": "4.3.2",
"googleapis": "34.0.0",
"graphql": "14.0.2",
"graphql-tag": "2.10.0",
"graphql-tools": "4.0.3",
"knex": "0.15.2",
"match-sorter": "2.3.0",
"morgan": "1.9.1",
"passport": "0.4.0",
"passport-google-oauth": "1.0.0",
"pg": "7.6.1",
"prop-types": "15.6.2",
"react": "16.6.3",
"react-apollo": "2.2.4",
"react-contextmenu": "2.10.0",
"react-dom": "16.6.3",
"react-modal": "3.6.1",
"react-table": "6.8.6",
"serve-favicon": "2.5.0"
},
"devDependencies": {
"@types/cookie-parser": "1.4.1",
"@types/dotenv": "4.0.3",
"@types/express": "4.16.0",
"@types/faker": "4.1.4",
"@types/graphql": "14.0.3",
"@types/jest": "23.3.9",
"@types/morgan": "1.7.35",
"@types/react": "16.7.4",
"@types/react-dom": "16.0.9",
"@types/supertest": "2.0.6",
"babel-core": "6.26.3",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"codecov": "3.1.0",
"css-loader": "1.0.1",
"husky": "1.1.4",
"jest": "23.6.0",
"lint-staged": "8.0.4",
"node-sass": "4.10.0",
"nodemon": "1.18.6",
"parcel-bundler": "1.10.3",
"prettier": "1.15.2",
"stylelint": "9.8.0",
"supertest": "3.3.0",
"ts-jest": "23.10.4",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"tslint-config-prettier": "1.16.0",
"tslint-eslint-rules": "5.4.0",
"tslint-microsoft-contrib": "5.2.1",
"tslint-react": "3.6.0",
"typescript": "3.1.6"
}
}