generated from BuildForSDG/js-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 853 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
{
"name": "vanhack-events-pwa",
"version": "0.0.1",
"description": "sample events mini site / app for VanHack events",
"private": false,
"directories": {
"test": "__tests__"
},
"scripts": {
"test": "jest --coverage",
"lint": "eslint \"src/**/*.js\"",
"start": "parcel ./src/index.html",
"build": "parcel build ./src/index.html --experimental-scope-hoisting --no-source-maps"
},
"author": {
"name": "Charles Odili",
"email": "chaluwa@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-jest": "^25.4.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^25.4.0",
"parcel-bundler": "^1.12.4"
},
"browserslist": [
"last 1 Chrome versions"
]
}