This repository was archived by the owner on Nov 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.36 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
{
"name": "mfd-ui",
"version": "0.1.0",
"license": "MIT",
"private": true,
"dependencies": {
"@types/jest": "^23.3.11",
"@types/node": "^10.12.18",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/react-helmet": "^5.0.8",
"@types/socket.io-client": "^1.4.32",
"@types/styled-components": "^4.1.4",
"polished": "^2.3.1",
"react": "^16.8.0-alpha.1",
"react-dom": "^16.8.0-alpha.1",
"react-helmet": "^5.2.0",
"react-scripts": "2.1.2",
"socket.io-client": "^2.2.0",
"styled-components": "^4.1.3",
"styled-normalize": "^8.0.4",
"typescript": "^3.2.2"
},
"devDependencies": {
"prettier": "^1.15.3",
"react-docgen-typescript": "^1.12.2",
"react-styleguidist": "^8.0.6",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0"
},
"scripts": {
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"pretty": "prettier --write \"src/**/*.{ts,tsx}\" && tslint --project . --fix",
"lint": "tslint --project .",
"type-lint": "tsc --noEmit"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}