-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.07 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
{
"name": "react-tutorials",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "parcel index.html -d build",
"build": "parcel build index.html -d build --no-cache --no-source-maps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erdemuslu/react-tutorials.git"
},
"keywords": [
"react",
"tutorial"
],
"author": "Erdem Uslu",
"license": "ISC",
"bugs": {
"url": "https://github.com/erdemuslu/react-tutorials/issues"
},
"homepage": "https://github.com/erdemuslu/react-tutorials#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"parcel-bundler": "^1.12.3"
},
"dependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0"
}
}