-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "dnspropagation",
"version": "1.0.0",
"description": "Javascript for the DNS Propagation Checker Webapp",
"main": "index.js",
"scripts": {
"watch": "parcel watch javascript/app.jsx -d assets/javascript --out-file main.js --public-url /assets/javascript/",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rvelhote/dnspropagation.git"
},
"keywords": [
"dns",
"propagation"
],
"author": "Ricardo Velhote <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rvelhote/dnspropagation/issues"
},
"homepage": "https://github.com/rvelhote/dnspropagation#readme",
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-intl": "^2.9.0",
"prop-types": "latest"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.8.0",
"parcel-bundler": "^1.12.3",
"react-test-renderer": "^16.8.6"
}
}