-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.05 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "pexels-figma",
"version": "2.2.1",
"description": "A Figma plugin to insert photos from Pexels.",
"homepage": "https://www.figma.com/community/plugin/829802086526281657/Pexels",
"license": "ISC",
"scripts": {
"build": "/usr/local/bin/node node_modules/.bin/webpack --mode=production",
"build:watch": "/usr/local/bin/node node_modules/.bin/webpack --mode=development --watch",
"prettier:format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,json}'"
},
"author": "Craig Dennis <[email protected]> (https://craigmdennis.com)",
"dependencies": {
"@closeio/use-infinite-scroll": "^1.0.0",
"@pexels/figma": "^2.7.11",
"@pexels/icons": "^2.7.11",
"@pexels/types": "^2.7.11",
"@pexels/utils": "^2.7.11",
"babel-plugin-styled-components": "^1.10.7",
"framer-motion": "^4.1.17",
"pexels": "^1.2.1",
"qs": "^6.10.1",
"random": "^3.0.6",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-intersection-observer": "^8.26.1",
"react-loading-skeleton": "^2.0.1",
"swr": "^0.5.6"
},
"devDependencies": {
"@babel/preset-env": "^7.9.5",
"@figma/plugin-typings": "^1.26.0",
"@svgr/webpack": "^5.3.1",
"@types/node": "^13.13.0",
"@types/qs": "^6.9.6",
"@types/react": "^16.8.24",
"@types/react-dom": "^16.8.5",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^5.2.6",
"file-loader": "^6.0.0",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.2",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2",
"sass": "^1.35.1",
"sass-loader": "^10.1.0",
"serialize-javascript": "^3.1.0",
"style-loader": "^1.2.0",
"ts-loader": "^6.0.4",
"tslint": "^5.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.7.4",
"url-loader": "^2.1.0",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,css,json}": [
"prettier --write",
"git add"
]
}
}