This repository was archived by the owner on Jan 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.03 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.03 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
{
"name": "react-instafeed",
"version": "1.0.0",
"description": "Instafeed.js component for React",
"license": "MIT",
"author": {
"name": "Jerome Fitzgerald",
"email": "j@jeromefitzgerald.com",
"url": "https://jeromefitzgerald.com"
},
"contributors": [
{
"name": "Casey Baggz",
"email": "caseybaggz@gmail.com",
"url": "https://caseybaggz.com"
}
],
"bugs": "https://github.com/JeromeFitz/react-instafeed/issues",
"repository": "https://github.com/JeromeFitz/react-instafeed",
"keywords": ["instafeed", "react"],
"main": "./dist/index.js",
"scripts": {
"build":
"NODE_ENV=production babel src --copy-files --out-dir dist --no-comments",
"lint:staged": "lint-staged",
"lint": "eslint .",
"lint:fix": "eslint . --fix --quiet",
"prebuild": "rimraf ./node_modules/.cache && rimraf ./dist",
"precommit": "lint-staged"
},
"//": "React is not installing with ^16.7.0-alpha.2",
"deprecatedDependencies": {
"react": "16.7.0-alpha.2",
"react-dom": "16.7.0-alpha.2"
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"instafeed-lite": "^1.0.10"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-minify": "^0.5.0",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"rimraf": "^2.6.3"
},
"lint-staged": {
"*.js": ["eslint --fix --quiet", "git add"]
},
"pre-commit": "lint:staged"
}