-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.08 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
{
"name": "issue-tracker-ts",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "npm run stmux:dev",
"stmux:dev": "npm run server:clean && stmux -w always -e 'ERROR|Failed' -M -- [ [ 'npm run app:start' : 'npm run server:start' ] .. [ 'npm run app:test' : -s 1/4 'npm run server:nodemon' ] ]",
"stmux:test": "npm run server:clean && stmux -w always -e 'ERROR|Failed' -M -- [ [ 'npm run app:start' : [ 'npm run server:start' : -s 1/3 'npm run server:nodemon' ] ] .. 'npm run cypress:open' ]",
"app:start": "BROWSER='NONE' react-app-rewired start --scripts-version react-scripts-ts",
"app:build": "react-app-rewired build --scripts-version react-scripts-ts",
"app:test": "react-app-rewired test --scripts-version react-scripts-ts --env=jsdom",
"server:clean": "rm -rf ./server/.cache ./server/dist && mkdir -p ./server/dist && touch ./server/dist/index.js",
"server:start": "parcel watch ./server/src/index.ts --target node --cache-dir ./server/.cache --out-dir ./server/dist",
"server:nodemon": "nodemon ./server/dist/index.js",
"cypress:open": "cypress open",
"eject": "react-scripts eject"
},
"jest": {
"modulePathIgnorePatterns": [
"server/"
],
"moduleDirectories": [
"node_modules",
"./"
],
"testMatch": [
"**/tests/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
]
},
"proxy": {
"/auth/*": {
"target": "http://localhost:4769"
},
"/graphql": {
"target": "http://localhost:4769"
}
},
"dependencies": {
"apollo-cache-inmemory": "^1.2.7",
"apollo-client": "^2.3.8",
"apollo-link": "^1.2.2",
"apollo-link-error": "^1.1.0",
"apollo-link-http": "^1.5.4",
"apollo-link-state": "^0.4.1",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"classnames": "^2.2.6",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"graphql-tools": "^3.1.1",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-graphql": "^0.7.5",
"koa-mount": "^3.0.0",
"koa-passport": "^4.1.0",
"koa-redis": "^3.1.2",
"koa-router": "^7.4.0",
"koa-session": "^5.8.2",
"koa-static": "^5.0.0",
"mongoose": "^5.2.7",
"passport-local": "^1.0.0",
"react": "^16.4.2",
"react-apollo": "^2.1.11",
"react-dom": "^16.4.2",
"react-feather": "^1.1.3",
"react-router-dom": "^4.3.1",
"react-scripts-ts": "2.17.0",
"reset.css": "^2.0.2",
"system-font-css": "^2.0.2"
},
"devDependencies": {
"@types/classnames": "^2.2.6",
"@types/es6-promise": "^3.3.0",
"@types/jest": "^23.3.1",
"@types/node": "^10.5.7",
"@types/react": "16.4.9",
"@types/react-dom": "^16.0.7",
"@types/react-router-dom": "^4.3.0",
"cypress": "^3.1.0",
"jest-dom": "^1.12.0",
"nodemon": "^1.18.4",
"parcel-bundler": "^1.9.7",
"postcss-preset-env": "^5.3.0",
"postcss-simple-vars": "^4.1.0",
"prop-types": "^15.6.2",
"react-app-rewire-postcss": "^1.0.2",
"react-app-rewired": "^1.5.2",
"react-testing-library": "^5.0.0",
"stmux": "^1.5.5",
"typescript": "^3.0.1",
"waait": "^1.0.2"
}
}