-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.78 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.78 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
{
"name": "wowgit",
"version": "0.0.1",
"description": "A git web client that wows you",
"main": "server/index.ts",
"scripts": {
"dev": "ts-node-dev --ignore-watch client/.next server/index.ts",
"build": "npm run build:clean && npm run build:next",
"build:next": "next build client",
"build:clean": "rm -rf client/.next",
"clean": "rm -rf node_modules client/.next",
"start": "NODE_ENV=production ts-node server/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --list-different \"{**/*,*}.{js,ts,jsx,tsx,json,graphql}\"",
"format:fix": "prettier --write \"{**/*,*}.{js,ts,jsx,tsx,json,graphql}\"",
"lint": "npm run format && tslint -c tslint.json ./{*,**/*}.{ts,tsx}",
"coverage": "jest --coverage"
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": true
}
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"js",
"json",
"jsx",
"ts",
"tsx"
],
"testURL": "http://localhost/",
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/*.d.ts",
"!**/*.{test,spec}.{ts,tsx}"
],
"preset": "ts-jest",
"testMatch": null
},
"repository": {
"type": "git",
"url": "git+https://github.com/superwower/wowgit.git"
},
"keywords": [
"git",
"web"
],
"author": "Super Wower",
"license": "MIT",
"bugs": {
"url": "https://github.com/superwower/wowgit/issues"
},
"homepage": "https://github.com/superwower/wowgit#readme",
"dependencies": {
"@types/classnames": "^2.2.6",
"@types/next": "^7.0.2",
"@types/nodegit": "^0.22.3",
"@zeit/next-typescript": "^1.1.1",
"apollo-boost": "^0.1.15",
"apollo-link-schema": "^1.1.1",
"autoprefixer": "^9.0.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-wrap-in-js": "^1.1.1",
"bulma": "^0.7.1",
"classnames": "^2.2.6",
"fastify": "^1.7.0",
"fastify-graphql": "^4.0.0",
"graphql": "^14.0.0",
"graphql-import": "^0.7.0",
"graphql-tag": "^2.9.2",
"graphql-tools": "^4.0.0",
"isomorphic-git": "^0.44.0",
"isomorphic-unfetch": "^3.0.0",
"next": "^7.0.2",
"node-sass": "^4.9.2",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^3.0.0",
"raw-loader": "^0.5.1",
"react": "^16.4.1",
"react-apollo": "^2.1.11",
"react-dom": "^16.4.1",
"recompose": "^0.28.2",
"sass-loader": "^7.0.3",
"ts-node": "^7.0.0",
"typescript": "^3.0.1",
"waait": "^1.0.2"
},
"devDependencies": {
"@types/jest": "23.3.10",
"jest": "23.6.0",
"prettier": "1.15.3",
"react-test-renderer": "16.6.3",
"ts-jest": "23.10.5",
"ts-node-dev": "1.0.0-pre.31",
"tslint": "5.11.0",
"tslint-config-prettier": "1.17.0"
}
}