-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
{
"name": "@datawheel/covid19",
"version": "0.1.0",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_OPTIONS=--max-old-space-size=8192 canon-build",
"compile": "rm -rf src/ && mkdir src && cp -a api/ src/api/ && npx babel app/ --out-dir src/app --copy-files && cp app/index.js src",
"dev": "canon-dev",
"locales": "canon-locales",
"release": "canon-release",
"setup": "canon-setup",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Datawheel/covid19.git"
},
"author": "Carlos Navarrete - Annabella Zapata",
"license": "MIT",
"bugs": {
"url": "https://github.com/Datawheel/covid19/issues"
},
"homepage": "https://github.com/Datawheel/covid19#readme",
"dependencies": {
"@datawheel/canon-core": "^0.18.7"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-react": "^7.9.1"
},
"babel": {
"presets": [
"@babel/preset-react",
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}