-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.64 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
{
"name": "app",
"version": "1.0.0",
"private": true,
"scripts": {
"watch": "webpack --config ui/webpack.config.js --watch",
"build": "webpack --config ui/webpack.config.js --mode production",
"test": "jest",
"apollo-codegen": "apollo schema:download --endpoint=http://host.docker.internal:8000/query schema.json && apollo codegen:generate --schema=schema.json --queries=ui/src/**/*.tsx --target=typescript"
},
"dependencies": {
"apollo-cache-inmemory": "^1.2.5",
"apollo-client": "^2.3.5",
"apollo-link": "^1.2.2",
"apollo-link-error": "^1.1.0",
"apollo-link-http": "^1.5.4",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"react": "^16.4.1",
"react-apollo": "^2.1.9",
"react-dom": "^16.4.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"@types/jest": "^23.3.0",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"@types/react-router": "^4.0.29",
"@types/react-router-dom": "^4.2.7",
"apollo": "^1.4.0",
"css-loader": "^1.0.0",
"file-loader": "^1.1.11",
"jest": "^23.4.1",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.2",
"sass-loader": "^7.0.3",
"ts-jest": "^23.0.1",
"ts-loader": "^4.4.2",
"typescript": "^2.9.2",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "ui/tsconfig.json"
}
},
"testMatch": [
"**/*.(test|spec).+(ts|tsx|js)"
]
}
}