-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.36 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
45
46
47
48
{
"name": "editions-card-builder",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc --noEmit --watch & parcel src/index.html -p 8082",
"clean": "rm -rf dist",
"build": "NODE_ENV=production && parcel build src/index.html && copyfiles CNAME dist",
"format": "prettier --write \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/guardian/editions-card-builder.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/guardian/editions-card-builder/issues"
},
"homepage": "https://github.com/guardian/editions-card-builder#readme",
"dependencies": {
"@emotion/core": "^10.0.35",
"@guardian/grid-client": "^1.1.1",
"@guardian/src-foundations": "^1.5.0",
"@types/css-font-loading-module": "0.0.4",
"@types/debounce": "^1.2.0",
"@types/downloadjs": "^1.4.2",
"debounce": "^1.2.0",
"downloadjs": "^1.4.7",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@types/node": "^14.0.14",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"copyfiles": "^2.1.1",
"parcel-bundler": "^1.12.4",
"prettier": "1.18.2",
"typescript": "^3.9.7"
},
"browserslist": [
"Chrome >= 77",
"Firefox >= 68"
]
}