-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 995 Bytes
/
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
{
"name": "git-stats",
"version": "0.0.1",
"description": "Statistics of GitHub profiles",
"main": "index.js",
"author": "Stuart Frost",
"license": "MIT",
"type": "module",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.0.0",
"body-parser": "^1.19.2",
"dotenv": "^16.0.0",
"dotenv-webpack": "^7.1.0",
"elm-webpack-loader": "^8.0.0",
"express": "^4.17.3",
"file-loader": "^6.2.0",
"node-fetch": "^3.2.0",
"serverless-http": "^2.7.0"
},
"devDependencies": {
"css-loader": "^6.6.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"sass": "^1.49.8",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"supertest": "^6.2.2",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development",
"watch": "webpack --mode=development --watch --progress --color",
"test": "jest"
}
}