-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "weathermachine",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf .cache dist",
"start": "npm run clean && parcel src/index.html",
"build": "npm run clean && parcel build src/index.html --no-source-maps --experimental-scope-hoisting",
"lint": "eslint ./src --ext .tsx --ext .ts",
"lintfix": "eslint ./src --ext .tsx --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arvind0598/weathermachine.git"
},
"author": "arvind0598",
"license": "ISC",
"bugs": {
"url": "https://github.com/arvind0598/weathermachine/issues"
},
"homepage": "https://github.com/arvind0598/weathermachine#readme",
"dependencies": {
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"devDependencies": {
"@types/node": "^12.11.7",
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"parcel-bundler": "^1.12.4",
"sass": "^1.23.1",
"typescript": "^3.6.4"
}
}