-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.42 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
{
"name": "send-anonymous-whatsapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "parcel src/index.html",
"build": "sudo rm public/* && parcel build src/index.html -d public/",
"clear-build-cache": "rm -rf .cache/ dist/",
"dev": "parcel src/index.html",
"dev:mock": "cross-env PET_MOCK=mock parcel src/index.html",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-phone-input-2": "^2.12.1",
"styled-components": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.9.1",
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.10.7",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"cross-env": "^5.2.0",
"eslint": "^5.12.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.0.2",
"parcel-bundler": "^1.12.1",
"prettier": "^2.0.2"
},
"browserslist": [
"last 2 Chrome versions"
]
}