-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
54 lines (54 loc) · 1.69 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
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "yarn workspace react-sortly-documentation run start",
"test": "yarn workspace react-sortly run test",
"lint:tsc": "tsc",
"lint:eslint": "eslint --ext .ts,.tsx .",
"lint": "yarn lint:tsc && yarn lint:eslint",
"build:api": "typedoc --out ./docs/api ./packages/react-sortly/src",
"build": "yarn workspaces run build && yarn build:api"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-transform-async-to-generator": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.7",
"@types/jest": "^24.0.24",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.1",
"@types/react-router-dom": "^5.1.3",
"@types/terser-webpack-plugin": "^2.2.0",
"@types/webpack": "^4.39.2",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"babel-loader": "^8.0.6",
"core-js": "^3.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^3.0.7",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"memoize-one": "^5.1.1",
"react": "^16.10.1",
"react-dnd": "^10.0.2",
"react-dom": "^16.10.1",
"terser-webpack-plugin": "^2.3.1",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.4",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.9"
}
}