-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "groupatar",
"version": "1.0.0",
"description": "Easily and quickly generate pictures with a lot of gravatars.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no tests installed\" && exit 1",
"build": "webpack --config webpack.prod.js",
"build:dev": "webpack --config webpack.dev.js",
"watch": "webpack --config webpack.dev.js --watch",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mangara/Groupatar.git"
},
"keywords": [
"gravatar",
"group"
],
"author": "Sander Verdonschot",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Mangara/Groupatar/issues"
},
"homepage": "https://github.com/Mangara/Groupatar#readme",
"devDependencies": {
"@types/node": "^11.13.18",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"awesome-typescript-loader": "^5.2.1",
"source-map-loader": "^0.2.4",
"typescript": "^3.5.3",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@types/gravatar": "^1.8.0",
"gravatar": "^1.8.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}