-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.36 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
{
"name": "packageName",
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "authorName",
"homepage": "https://url.com",
"main": "index.html",
"scripts": {
"start": "start-script",
"test": "test-script"
},
"dependencies": {
"package-name-exact-version": "3.2.9",
"package-name-greater-than-version": ">3.2.9",
"package-name-compatible-changes-version": "^3.2.9",
"package-name-minor-level-changes-version": "~3.2.9",
},
"devDependencies": {
"package-name-only-for-npm-package-in-dev": "3.2.9",
},
"license": "MIT",
"private": true,
"files": [
"src/",
"dist/assets",
"any-file-you-want-to-be-packed"
],
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"plugins": ["testing-library", "jest-dom"],
"extends": [
"react-app",
"react-app/jest",
"plugin:testing-library/react",
"plugin:jest-dom/recommended",
"prettier"
],
"rules": {
"react/no-unescaped-entities": "off",
"react/prop-types": 1
}
},
"eslintIgnore": ["/node_modules"],
"prettier": {
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"tabWidth": 2,
"useTabs": false,
"printWidth": 120
},
"browserslist": [
"default"
],
"repository": {
"type": "git",
"url": "https://idontknow/todo.git"
}
}