-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
34 lines (34 loc) · 991 Bytes
/
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
{
"name": "react-unsplash",
"version": "1.0.0",
"description": "A sample unsplash clone with react",
"main": "index.js",
"scripts": {
"build": "parcel build src/index.html --out-dir public",
"dev": "parcel src/index.html --open",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"clear": "rm -rf dist/ .cache/",
"lint": "eslint **/*.{js,jsx} --quiet"
},
"author": "",
"license": "ISC",
"dependencies": {
"aphrodite": "^2.4.0",
"parcel-bundler": "^1.12.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-responsive-masonry": "^2.1.2"
},
"devDependencies": {
"axios": "^0.21.2",
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"postcss-modules": "^4.0.0",
"prettier": "^1.19.1",
"react-router-dom": "^5.2.0",
"unsplash-js": "^7.0.8"
}
}