-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.74 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 4.74 KB
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
122
{
"name": "@apitree/alda",
"description": "React stack with material-ui",
"version": "0.1.0-alpha.34",
"author": "ApiTree",
"repository": {
"type": "git",
"url": "git+https://github.com/ApiTreeCZ/alda.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/ApiTreeCZ/alda/issues"
},
"homepage": "https://github.com/ApiTreeCZ/alda#readme",
"scripts": {
"generate:lang": "ts-node --compilerOptions {\\\"module\\\":\\\"commonjs\\\"} ./scripts/default-lang.ts",
"generate:graphql:merge": "node -e \"console.log(require('graphql-import').importSchema('./schema/root.graphql'))\" > graphql.schema.graphql",
"generate:graphql:json": "npm run generate:graphql:merge && apollo-codegen introspect-schema graphql.schema.graphql --output graphql.schema.json",
"generate:graphql:typescript": "gql-gen --schema graphql.schema.json --template typescript --out ./types/graphql.d.ts",
"prebuild": "rimraf -- dist .next",
"build": "npm run generate:graphql:json && npm run generate:graphql:typescript && next build && tsc --project tsconfig.server.json && npm run generate:lang",
"start": "NODE_ENV=production node dist/index.js",
"dev": "npm run generate:graphql:json && npm run generate:graphql:typescript && npm run generate:lang && nodemon server/index.ts",
"dev:simple": "npm run generate:graphql:json && npm run generate:graphql:typescript && npm run generate:lang && tsc --project tsconfig.server.json && node dist/index.js",
"debug": "node --inspect dist/index.js",
"tslint": "tslint -c tslint.json 'client/**/*.*' 'pages/**/*.*' 'server/**/*.*'",
"tslint:check": "tslint-config-prettier-check ./tslint.json",
"prettier:show": "prettier --list-different \"./**/*\"",
"prettier:write": "prettier \"./**/*\" --write",
"precommit": "pretty-quick --staged && npm run tslint",
"test": "jest",
"coverage": "jest --coverage",
"coverage:report": "npm run coverage && cat ./coverage/lcov.info | coveralls"
},
"jest": {
"testEnvironment": "node",
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"collectCoverageFrom": [
"client/**/*.ts"
]
},
"dependencies": {
"@material-ui/core": "1.4.3",
"@material-ui/icons": "2.0.1",
"accepts": "1.3.5",
"apollo-boost": "0.1.12",
"apollo-link-context": "^1.0.8",
"apollo-server-express": "2.0.0",
"autoprefixer": "9.1.0",
"body-parser": "1.18.3",
"dotenv": "6.0.0",
"express": "4.16.3",
"glob": "7.1.2",
"graphql": "0.13.2",
"graphql-import": "0.6.0",
"graphql-tag": "2.9.2",
"graphql-tools": "3.1.1",
"intl": "1.2.5",
"isomorphic-unfetch": "2.1.1",
"next": "6.1.1",
"next-redux-wrapper": "2.0.0",
"nprogress": "0.2.0",
"postcss": "7.0.2",
"react": "16.4.2",
"react-apollo": "2.1.9",
"react-dom": "16.4.2",
"react-intl": "2.4.0",
"react-redux": "5.0.7",
"redux": "4.0.0",
"redux-actions": "2.6.1",
"redux-form": "7.4.2",
"redux-thunk": "2.3.0",
"reselect": "3.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.56",
"@babel/preset-typescript": "^7.0.0-beta.56",
"@playlyfe/gql": "2.6.0",
"@types/accepts": "1.3.5",
"@types/autoprefixer": "6.7.3",
"@types/express": "4.16.0",
"@types/glob": "5.0.35",
"@types/intl": "1.2.0",
"@types/isomorphic-fetch": "0.0.34",
"@types/jest": "23.3.1",
"@types/next": "6.1.2",
"@types/node": "10.5.6",
"@types/nprogress": "0.0.29",
"@types/react": "16.4.7",
"@types/react-intl": "2.3.9",
"@types/react-redux": "6.0.6",
"@types/redux-actions": "2.3.0",
"@types/redux-form": "7.4.4",
"@zeit/next-typescript": "1.1.0",
"apollo-codegen": "0.20.2",
"babel-plugin-react-intl": "2.4.0",
"coveralls": "3.0.2",
"fork-ts-checker-webpack-plugin": "0.4.4",
"graphql-code-generator": "0.10.5",
"graphql-codegen-typescript-template": "0.10.5",
"husky": "0.14.3",
"jest": "23.4.2",
"nodemon": "1.18.3",
"prettier": "1.14.0",
"pretty-quick": "1.6.0",
"rimraf": "2.6.2",
"ts-jest": "23.1.2",
"ts-node": "7.0.0",
"tslint": "5.11.0",
"tslint-config-prettier": "1.14.0",
"tslint-react": "3.6.0",
"typescript": "3.0.1"
}
}