-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.13 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.13 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
{
"name": "mancala",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "webpack -p --config=configs/prod.js",
"start": "webpack-dev-server ---config=configs/dev.js --open --colors --progress --public",
"lint": "eslint --ext .jsx,.js,.ts,.tsx src/ --cache --report-unused-disable-directives",
"lint:ci": "eslint --ext .jsx,.js,.ts,.tsx src/ --report-unused-disable-directives",
"lint:fix": "eslint --ext .jsx,.js,.ts,.tsx src/ --cache --fix",
"prettier:check": "prettier --check \"src/**/*.+(ts|tsx|json|css|md|js|jsx)\"",
"prettier:fix": "prettier --write \"src/**/*.+(ts|tsx|json|css|md|js|jsx)\"",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit-msg && npm run type-check && npm run lint"
}
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "7.6.2",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/preset-env": "7.6.2",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.6.0",
"@types/react": "^16.9.4",
"@types/react-dom": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"babel-loader": "^8.0.4",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-react-hooks": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.8",
"prettier": "^1.18.2",
"style-loader": "^1.0.0",
"typescript": "^3.6.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"antd": "^3.23.5",
"react": "^16.10.1",
"react-dom": "^16.10.1"
}
}