forked from sourcecred/template-instance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 727 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 727 Bytes
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
{
"name": "template-instance",
"version": "0.1.0",
"description": "A template repo for creating a SourceCred instance",
"repository": "git@github.com:sourcecred/template-instance.git",
"author": "SourceCred Team <contact@sourcecred.io>",
"license": "MIT",
"private": true,
"dependencies": {
"sourcecred": "0.7.1"
},
"scripts": {
"clean": "rimraf cache site",
"clean-all": "yarn clean && rimraf output",
"load": "dotenv sourcecred load",
"graph": "dotenv sourcecred graph",
"score": "sourcecred score",
"site": "sourcecred site",
"serve": "sourcecred serve",
"grain": "sourcecred grain"
},
"devDependencies": {
"rimraf": "^3.0.2",
"dotenv-cli": "^4.0.0"
}
}