-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
137 lines (137 loc) · 4.18 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "gitcodeshare.com",
"version": "0.1.0",
"description": "https://contributhon.kr/project#gitshare",
"main": "index.js",
"scripts": {
"dev": "npm-run-all -p dev:front dev:backend",
"dev:front": "node ./bin/front.js",
"dev:backend": "nodemon --watch server -e ts,js ./bin/server.js",
"build": "next build",
"test": "jest --noStackTrace --watch",
"test:ci": "jest -w=4 --silent --noStackTrace --forceExit",
"test:skip": "echo \"Skip test\" && exit 0",
"start": "node ./bin/server.js",
"precommit": "lint-staged && npm run contributors:build && git add README.md",
"contributors:add": "all-contributors add",
"contributors:build": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kosslab-kr/gitCodeShare.com.git"
},
"author": "jsdev.kr",
"license": "MIT",
"bugs": {
"url": "https://github.com/kosslab-kr/gitCodeShare.com/issues"
},
"homepage": "https://github.com/kosslab-kr/gitCodeShare.com#readme",
"lint-staged": {
"linters": {
"*.{js,jsx}": [
"prettier --parser flow --write",
"jest --bail --passWithNoTests",
"git add"
],
"*.{ts,tsx}": [
"prettier --parser typescript --write",
"tslint --fix",
"jest --bail --passWithNoTests",
"git add"
]
}
},
"dependencies": {
"@types/cache-manager": "^1.2.6",
"@types/chrome": "0.0.75",
"@types/codemirror": "0.0.70",
"@types/connect-redis": "^0.0.8",
"@types/cookie-parser": "^1.4.1",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"@types/express-session": "^1.15.11",
"@types/highlight.js": "^9.12.3",
"@types/http-proxy-middleware": "^0.19.0",
"@types/lodash": "^4.14.118",
"@types/morgan": "^1.7.35",
"@types/next": "^7.0.5",
"@types/node": "^10.12.11",
"@types/passport": "^0.4.7",
"@types/passport-github": "^1.1.3",
"@types/puppeteer": "^1.10.1",
"@types/react": "^16.7.11",
"@types/react-dom": "^16.0.11",
"@types/react-helmet": "^5.0.7",
"@types/redis": "^2.8.8",
"@types/request": "^2.48.1",
"@types/styled-components": "^4.1.2",
"@types/uuid": "^3.4.4",
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"antd": "^3.10.9",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"cache-manager": "^2.9.0",
"codemirror": "^5.42.0",
"cookie-parser": "^1.4.3",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"fork-ts-checker-webpack-plugin": "^0.5.0",
"highlight.js": "^9.13.1",
"http-proxy-middleware": "^0.19.1",
"less": "^3.9.0",
"lodash": "^4.17.11",
"memorystore": "^1.6.0",
"mobx": "^5.6.0",
"mobx-react": "^5.4.2",
"mobx-state-tree": "^3.8.1",
"morgan": "^1.9.1",
"ms": "^2.1.1",
"next": "^7.0.2",
"next-compose-plugins": "^2.1.1",
"node-sass": "^4.10.0",
"now-logs": "0.0.7",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"puppeteer": "^1.11.0",
"react": "^16.6.3",
"react-animations": "^1.0.0",
"react-codemirror2": "^5.1.0",
"react-dom": "^16.6.3",
"react-helmet": "^5.2.0",
"styled-components": "^4.1.2",
"styled-normalize": "^8.0.4",
"ts-node": "^7.0.1",
"typescript": "^3.2.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-decorators": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"@types/jest": "^23.3.10",
"all-contributors-cli": "^5.4.1",
"babel-jest": "^23.6.0",
"babel-plugin-styled-components": "^1.9.2",
"babel-plugin-transform-define": "^1.3.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"kill-port": "^1.3.2",
"lint-staged": "^8.1.0",
"nodemon": "1.18.7",
"npm-run-all": "^4.1.5",
"prettier": "^1.15.3",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.6.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"typescript-styled-plugin": "^0.13.0"
}
}