forked from jenkoian/hacktoberfest-checker
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
55 lines (55 loc) · 1.73 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
{
"name": "frogtoberfest",
"version": "1.0.0",
"description": "Web app to track your progress for Frogtoberfest.",
"main": "index.js",
"private": true,
"author": "Ian Jenkins",
"license": "MIT",
"repository": "git@github.com:leapfrogtechnology/frogtoberfest.git",
"keywords": [
"hacktoberfest",
"frogtoberfest"
],
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"tailwind-gen": "node ./node_modules/tailwindcss/lib/cli.js build ./tailwind-gen.css -c ./tailwind.js -o ./src/tailwind.css",
"eslint": "eslint \"{src,api,public}/**/*.{js,jsx}\"",
"eslint:fix": "eslint --fix \"{src,api,public}/**/*.{js,jsx}\"",
"lint": "yarn prettier && yarn eslint",
"lint:fix": "yarn prettier:fix && yarn eslint:fix",
"prettier": "prettier --list-different \"{src,api,public}/**/*.{js,jsx,html,css,md,yml,yml,json}\" --loglevel warn",
"prettier:fix": "prettier --write \"{src,api,public}/**/*.{js,jsx,html,css,md,yml,yml,json}\" --loglevel warn",
"scss": "sass --watch ./src/assets/scss:./src/assets/css"
},
"dependencies": {
"dayjs": "^1.11.5",
"prop-types": "^15.6.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-helmet": "^5.2.0",
"react-router-dom": "^5.1.2",
"sass": "^1.52.3"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"eslint": "6.5.1",
"eslint-config-leapfrog": "^2.0.1",
"eslint-plugin-react": "^7.16.0",
"prettier": "^1.14.3",
"react-scripts": "^3.2.0",
"tailwindcss": "^0.6.6"
},
"engines": {
"node": ">=16.0.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}