-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.07 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.07 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
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
{
"name": "react-typescript-boilerplate",
"version": "0.1.0",
"author": "Med",
"description": "Modern react web app boilerplate for enterprise-grade projects, highly scalable, best developer experience and a focus on performance and best practices (React.js, Typescript, Mock API, Flux, SASS, Bootstrap, Jest)",
"private": false,
"keywords": [
"react",
"typescript",
"json-server",
"flux",
"sass",
"i18n"
],
"scripts": {
"start": "run-p start:dev start:api",
"start:dev": "cross-env REACT_APP_API_URL=http://localhost:3001 HOST=localhost react-scripts start",
"prestart:api": "ts-node tools/createMockDb.ts",
"start:api": "ts-node tools/apiServer.ts",
"build": "CI=true react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "tslint --fix -c tslint.json src/**/*.{ts,tsx}",
"prettify": "prettier --write 'src/**/*.ts?(x)'",
"commitlint": "commitlint",
"commitizen:init": "commitizen init git-cz --yarn --dev --exact",
"git-cz": "git cz",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"bootstrap": "^4.4.1",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-sidebar": "^3.0.2",
"source-map-explorer": "^2.4.2",
"typescript": "~3.7.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/travis-cli": "^8.3.5",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/preset-create-react-app": "^3.0.0",
"@storybook/react": "^5.3.18",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/react-sidebar": "^3.0.0",
"commitizen": "^4.1.2",
"cross-env": "^7.0.2",
"git-cz": "4.5.0",
"husky": "^4.2.5",
"json-server": "^0.16.1",
"lint-staged": "^10.2.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^5.0.0",
"typescript-tslint-plugin": "^0.5.5"
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
}
}