-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "ts-meetup-2018-1",
"version": "1.0.0",
"description": "demo for typescript korea meetup 2018 1st",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"prebuild": "tsc",
"predev": "tsc",
"start": "next start",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnwook/ts-meetup-2018-1.git"
},
"keywords": [
"react",
"typescript"
],
"author": "@johnwook",
"license": "ISC",
"bugs": {
"url": "https://github.com/johnwook/ts-meetup-2018-1/issues"
},
"homepage": "https://github.com/johnwook/ts-meetup-2018-1#readme",
"dependencies": {
"@types/next": "^2.4.7",
"@types/react": "^16.0.34",
"@types/react-dom": "^16.0.3",
"antd": "^3.1.3",
"babel-plugin-import": "^1.6.3",
"date-fns": "^1.29.0",
"next": "^4.2.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"tslib": "^1.8.1",
"typescript": "^2.6.2"
},
"devDependencies": {
"prettier": "^1.10.2",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.6.0",
"tslint-react": "^3.4.0"
}
}