-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
90 lines (90 loc) · 2.4 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
{
"name": "kosscontributhon2018",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"dev": "node server.js",
"build": "next build",
"precommit": "lint-staged",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kosslab-kr/kosscontributhon2018.git"
},
"author": "jsdev.kr",
"license": "MIT",
"bugs": {
"url": "https://github.com/kosslab-kr/kosscontributhon2018/issues"
},
"homepage": "https://github.com/kosslab-kr/kosscontributhon2018#readme",
"lint-staged": {
"linters": {
"*.{js,jsx}": [
"prettier --parser flow --write",
"git add"
],
"*.{ts,tsx}": [
"prettier --parser typescript --write",
"tslint --fix",
"git add"
]
}
},
"dependencies": {
"@babel/core": "^7.0.0-rc.3",
"@babel/preset-env": "^7.0.0-rc.3",
"@babel/register": "^7.0.0-rc.3",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/lodash": "^4.14.116",
"@types/moment": "^2.13.0",
"@types/morgan": "^1.7.35",
"@types/next": "^6.1.4",
"@types/parse": "^1.11.1",
"@types/react": "^16.4.11",
"@types/react-dom": "^16.0.7",
"@zeit/next-css": "^0.2.0",
"@zeit/next-less": "^0.3.0",
"@zeit/next-sass": "^0.2.0",
"@zeit/next-typescript": "^1.1.0",
"antd": "^3.8.2",
"babel-plugin-styled-components": "^1.5.1",
"babel-plugin-transform-define": "^1.3.0",
"body-parser": "^1.18.3",
"cron": "1.3.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"fork-ts-checker-webpack-plugin": "^0.4.9",
"isomorphic-unfetch": "^2.1.1",
"kerberos": "0.0.24",
"less": "^3.8.1",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"next": "^6.1.1",
"next-compose-plugins": "^2.1.1",
"node-sass": "^4.9.3",
"parse": "^2.0.1",
"parse-dashboard": "^1.2.0",
"parse-server": "^2.8.4",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"recharts": "^1.1.0",
"styled-components": "^3.4.5",
"styled-normalize": "^8.0.0",
"ts-node": "^7.0.1",
"typescript": "^3.0.1"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.10.0",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^3.6.0"
}
}