-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.62 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.62 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
{
"name": "react-mobx-mui-ts-seed",
"description": "Seed Project for React + MobX + Material UI + TypeScript",
"version": "0.1.0",
"main": "index.js",
"author": "Naresh Bhatia",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/archfirst/react-mobx-mui-ts-seed.git"
},
"devDependencies": {
"@storybook/react": "^3.2.5",
"@types/storybook__react": "^3.0.5",
"husky": "^0.14.3",
"inquirer-directory": "^2.1.0",
"lint-staged": "^4.0.3",
"plop": "^1.8.0",
"prettier": "^1.5.3",
"react-scripts-ts": "^2.6.0",
"ts-loader": "^4.2.0"
},
"dependencies": {
"@types/jest": "^20.0.7",
"@types/node": "^8.0.24",
"@types/react": "^15.6.1",
"@types/react-dom": "^15.5.3",
"material-ui": "^1.0.0-beta.6",
"material-ui-icons": "^1.0.0-beta.5",
"mobx": "^3.2.2",
"mobx-react": "^4.1.8",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router-dom": "^4.1.2"
},
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"lint": "tslint 'src/**/*.ts*'",
"gen": "plop --plopfile generators/plopfile.js",
"format": "prettier --print-width 80 --tab-width 4 --single-quote --parser typescript --write 'src/**/*.ts*'",
"precommit": "lint-staged",
"storybook": "start-storybook -p 6006 -c .storybook",
"build-storybook": "build-storybook"
},
"lint-staged": {
"*.ts*": [
"prettier --print-width 80 --tab-width 4 --single-quote --parser typescript --write",
"git add"
]
}
}