-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "vanilla-blog",
"version": "1.1.0",
"description": "POC for a Blog UI implementation leveraging the Vanilla framework",
"main": "main.js",
"author": "Pablo Deeleman",
"license": "MIT",
"repository": {
"url": "https://github.com/deeleman/vanilla-blog"
},
"private": true,
"scripts": {
"start": "parcel src/index.html -p 8888",
"prebuild": "rimraf ./dist",
"build": "parcel build src/index.html",
"test": "jest --silent",
"test:ci": "jest --silent --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "eslint src/**/*.ts --no-error-on-unmatched-pattern"
},
"dependencies": {
"promise-polyfill": "8.1.3",
"vanilla-framework": "2.14.1",
"whatwg-fetch": "3.2.0"
},
"devDependencies": {
"@babel/core": "7.10.4",
"@babel/preset-env": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@types/jest": "26.0.4",
"@types/node": "14.0.23",
"@typescript-eslint/eslint-plugin": "3.6.1",
"@typescript-eslint/parser": "3.6.1",
"babel-jest": "26.1.0",
"coveralls": "3.1.0",
"eslint": "7.4.0",
"eslint-plugin-html": "6.0.2",
"jest": "26.1.0",
"node-sass": "4.14.1",
"parcel-bundler": "1.12.4",
"rimraf": "3.0.2",
"sass": "1.26.10",
"typescript": "3.9.6"
}
}