-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.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
{
"name": "thisis",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development parcel src/index.html",
"start:functions": "NODE_ENV=development netlify-lambda serve functions",
"build": "NODE_ENV=production parcel build src/index.html && yarn build:functions",
"build:functions": "netlify-lambda build functions",
"prettier": "pretty-quick"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"dotenv": "^8.0.0",
"husky": "^2.4.0",
"jsonwebtoken": "^8.5.1",
"netlify-lambda": "^1.4.13",
"parcel-bundler": "^1.12.3",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.0",
"sass": "^1.21.0",
"simple-oauth2": "^2.2.1"
},
"dependencies": {
"axios": "^0.19.0",
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0",
"react-dropzone": "^10.1.5",
"react-router-dom": "^5.0.1",
"react-spring": "^8.0.25",
"styled-components": "^4.3.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}