-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.83 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
61
62
63
{
"name": "open-source-immersion-checker",
"version": "5.0.0",
"description": "Small app to see if you have fulfilled the requirements for a Open Source Immersion",
"main": "index.js",
"engines": {
"node": ">=12.13.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": [
"open-source-immersion"
],
"author": "Ian Jenkins",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.1",
"cors": "^2.8.5",
"dotenv": "^4.0.0",
"express": "^4.13.4",
"github": "^12.0.0",
"lodash": "^4.17.19",
"moment": "^2.18.1",
"morgan": "^1.10.0",
"postcss-url": "^8.0.0",
"prop-types": "^15.6.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.0",
"react-html-parser": "^2.0.2",
"react-router-dom": "^4.3.1",
"react-scripts": "^3.4.1"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.3.0",
"autoprefixer": "^9.7.5",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.3",
"postcss-easy-import": "^3.0.0",
"prettier": "^1.19.1",
"tailwindcss": "^1.2.0"
},
"repository": "[email protected]:prondubuisi/pr-checker.git",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}