-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "palit-webapp",
"version": "0.1.0",
"private": true,
"author": "Joimee",
"scripts": {
"start": "next start",
"dev": "next dev",
"build": "next build",
"fix:eslint": "eslint --fix ./ --ext .js --ext .jsx",
"fix:stylelint": "stylelint --fix ./**/*.{css,scss,sass}",
"fix": "npm run fix:eslint && npm run fix:stylelint",
"component": "plop component"
},
"dependencies": {
"@sendgrid/mail": "^7.2.6",
"@zeit/next-sass": "^1.0.1",
"firebase": "^7.21.0",
"firebase-admin": "^9.3.0",
"firebase-functions": "^3.11.0",
"lodash.throttle": "^4.1.1",
"next": "9.5.4",
"node-fetch": "^2.6.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-svg": "^11.0.38",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"node-sass": "^4.13.1",
"plop": "^2.6.0",
"stylelint": "^13.2.1",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.16.0"
}
}