This repository has been archived by the owner on Oct 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.8 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
{
"name": "tictactoe-study",
"version": "1.0.0",
"description": "Tic Tac Toe For TypeScript and Jest Study",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "[email protected]:ytetsuro/tictactoe-study.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ytetsuro/tictactoe-study/issues"
},
"homepage": "https://github.com/ytetsuro/tictactoe-study/",
"devDependencies": {
"@types/babel-core": "^6.25.6",
"@types/chart.js": "^2.7.51",
"@types/eslint": "^4.16.6",
"@types/jest": "^24.0.12",
"@types/mithril": "^1.1.16",
"@types/prettier": "^1.16.1",
"@types/webpack": "^4.4.27",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.8.0",
"mithril-query": "^2.5.2",
"prettier": "1.16.4",
"ts-jest": "^24.0.2",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.3",
"tslint": "^5.15.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-loader": "^3.5.4",
"tslint-plugin-prettier": "^2.0.1",
"typedoc": "^0.14.2",
"typescript": "^3.4.5",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"chart.js": "^2.8.0",
"mithril": "^1.1.6",
"moment": "^2.24.0",
"tsc": "^1.20150623.0"
}
}