-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
78 lines (78 loc) · 2.24 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
{
"name": "@nathanfriend/tree-online",
"version": "0.1.0",
"description": "An online tree-like utility for generating ASCII folder structure diagrams",
"repository": "[email protected]:nfriend/tree-online.git",
"author": "Nathan Friend <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"@types/core-js": "2.5.4",
"@types/jest": "26.0.15",
"@types/lodash.defaultsdeep": "4.6.6",
"@types/lodash.flattendeep": "4.4.6",
"@types/lodash.last": "3.0.6",
"@types/node": "12.19.7",
"@types/react": "16.14.2",
"@types/react-copy-to-clipboard": "4.3.0",
"@types/react-dom": "16.9.10",
"@types/react-redux": "7.1.7",
"@types/react-toggle": "4.0.2",
"@types/reselect": "2.2.0",
"bootstrap": "4.5.3",
"bootswatch": "4.5.3",
"core-js": "3.8.0",
"lodash.defaultsdeep": "4.6.1",
"lodash.flattendeep": "4.4.0",
"lodash.last": "3.0.0",
"moment": "2.29.1",
"react": "16.14.0",
"react-app-polyfill": "1.0.6",
"react-copy-to-clipboard": "5.0.2",
"react-dom": "16.14.0",
"react-redux": "7.2.0",
"react-simple-code-editor": "0.11.0",
"react-toggle": "4.1.1",
"redux": "4.0.5",
"reselect": "4.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"tslint": "tslint -c tslint.json -p .",
"tslint:fix": "yarn tslint --fix",
"prettier": "prettier --check 'src/**/*.{ts,tsx}'",
"prettier:fix": "prettier --write 'src/**/*.{ts,tsx}'",
"lint": "yarn prettier; yarn tslint",
"lint:fix": "yarn prettier:fix; yarn tslint:fix"
},
"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": {
"@types/enzyme": "3.10.8",
"@types/enzyme-adapter-react-16": "1.0.6",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"node-sass": "4.14.1",
"prettier": "1.19.1",
"react-scripts": "3.4.4",
"tslint": "6.1.3",
"tslint-react": "4.1.0",
"typescript": "3.9.7"
}
}