forked from jenkoian/hacktoberfest-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.71 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
{
"name": "hacktoberfest-checker",
"version": "5.0.0",
"description": "Small app to see if you have fulfilled the requirements for a Hacktoberfest t-shirt",
"main": "index.js",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"start": "npm run build; npm run start-server",
"start-development": "npm-run-all -l -p \"start-frontend\" \"start-server\"",
"start-frontend": "react-scripts start",
"start-server": "node index.js",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"tailwind-gen": "node ./node_modules/.bin/postcss ./src/style.css -o ./src/index.css",
"eslint": "npm run prettier",
"eslint-fix": "npm run prettier-fix",
"prettier": "prettier \"{src,api}/**/*.js\"",
"prettier-fix": "prettier --write \"{src,api}/**/*.js\""
},
"keywords": [
"hacktoberfest"
],
"author": "Ian Jenkins",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.1",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.13.4",
"github": "^12.0.0",
"lodash": "^4.17.13",
"moment": "^2.18.1",
"morgan": "^1.7.0",
"postcss-url": "^8.0.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-helmet": "^5.2.0",
"react-router-dom": "^4.3.1",
"react-scripts": "3.0.1"
},
"devDependencies": {
"autoprefixer": "^9.6.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.3",
"postcss-easy-import": "^3.0.0",
"prettier": "^1.14.3",
"tailwindcss": "^1.1.2"
},
"repository": "[email protected]:jenkoian/hacktoberfest-checker.git",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}