-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.73 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.73 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
{
"name": "{{cookiecutter.project_slug}}",
"version": "0.0.0",
"description": "{{cookiecutter.project_short_description}}",
"main": "dist/index.html",
"scripts": {
"clean": "rm -rf dist .cache .parcel-cache",
"develop": "parcel -p 8000 ./src/index.html --open",
"build": "parcel build ./src/index.html --dist-dir dist",
"serve": "npx serve -p 8000 dist",
"deploy": "surge ./dist",
"lint": "eslint --ignore-path .gitignore \"**/*.{js,jsx}\"",
"lint:fix": "eslint --ignore-path .gitignore \"**/*.{js,jsx}\" --fix",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"test": "jest",
"tdd": "jest --watch",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}.git"
},
"bugs": {
"url": "https://github.com/{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}/issues"
},
"homepage": "https://github.com/{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}",
"author": "{{ cookiecutter.github_username }}",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"axe-core": "^4.0.2",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.12.0",
"cypress": "^6.5.0",
"cypress-axe": "0.12.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-inclusive-language": "^2.1.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.2",
"jest-styled-components": "^7.0.3",
"parcel": "^2.0.0-beta.1",
"prettier": "^2.1.2"
},
"dependencies": {
"@devseed-ui/button": "^3.0.2",
"@devseed-ui/collecticons": "^3.0.0",
"@devseed-ui/dropdown": "^2.0.2",
"@devseed-ui/form": "^1.0.3",
"@devseed-ui/global-loading": "^2.0.1",
"@devseed-ui/theme-provider": "^3.0.0",
"@devseed-ui/toolbar": "^2.1.0",
"@devseed-ui/typography": "^1.0.0",
"lodash.defaultsdeep": "^4.6.1",
"mapbox-gl": "^1.13.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^17.0.1",
"styled-components": "^5.2.1"
},
"browserslist": {
"production": [
"last 3 chrome versions",
"last 3 firefox versions",
"last 3 safari versions"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}