-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 956 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
39
40
{
"name": "bobsled",
"version": "3.0.0",
"description": "bobsled is a task runner designed for Open States",
"scripts": {
"start": "parcel watch js/index.js -d static",
"build": "parcel build js/index.js -d static",
"prettier": "prettier --write js/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openstates/bobsled.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/openstates/bobsled/issues"
},
"homepage": "https://github.com/openstates/bobsled#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"prettier": "^1.19.1"
},
"dependencies": {
"parcel": "^1.12.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0"
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"prettier": {
"trailingComma": "es5"
}
}