-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.11 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "chronolapselibrary-commons",
"version": "0.2.0",
"description": "commons",
"author": "seed.of.apricot",
"repository": "",
"license": "MIT",
"target": "esnext",
"moduleResolution": "node",
"declaration": true,
"main": "dist/index.js",
"scripts": {
"build": "ttsc && copyfiles -u 1 src/assets/**/* dist",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@bit/chronolapselibrary.assets.images.ingame": "file:./src/bit/images/ingame",
"@bit/chronolapselibrary.assets.images.logo": "file:./src/bit/images/logo"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0",
"react-router-dom": ">=5.0.1",
"react-scrollbars-custom": ">=4.0.20",
"react-use": ">=12.2.0",
"@material-ui/core": "^4.4.2",
"@material-ui/icons": "^4.4.1",
"@material-ui/styles": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@material-ui/core": "^4.4.2",
"@material-ui/icons": "^4.4.1",
"@material-ui/styles": "^4.4.1",
"@storybook/addon-actions": "^5.2.1",
"@storybook/addon-links": "^5.2.1",
"@storybook/addons": "^5.2.1",
"@storybook/react": "^5.2.1",
"@types/jest": "^24.0.18",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-router-dom": "^4.3.5",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"babel-loader": "^8.0.6",
"copyfiles": "^2.1.1",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-react-app": "^5.0.1",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"file-loader": "^4.2.0",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-router-dom": "^5.0.1",
"react-scrollbars-custom": "^4.0.16",
"react-use": "^10.5.0",
"storybook-addon-material-ui": "^0.9.0-alpha.20",
"ts-loader": "^6.1.0",
"ttypescript": "^1.5.7",
"typescript": "^3.6.3",
"typescript-transform-paths": "^1.1.10",
"webpack": "^4.40.2"
},
"bit": {
"env": {
"compiler": "bit.envs/compilers/react-typescript@3.0.1",
"tester": "bit.envs/testers/jest@22.4.3"
},
"componentsDefaultDirectory": "src/bit/{name}",
"packageManager": "npm",
"resolveModules": {
"aliases": {
"@src": "./src",
"@components": "./src/components",
"@themes": "./src/themes"
}
}
},
"husky": {
"hooks": {
"pre-commit": [
"lint-staged",
"license/exportStatement.js --json --out license/statement.json --customPath license/statementConfig.json"
]
}
},
"lint-staged": {
"./**/*.{js,ts,jsx,tsx}": [
"eslint",
"jest --findRelatedTests"
],
"./**/*.{js,ts,jsx,tsx,json,md}": [
"prettier --write",
"git add"
]
}
}