-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1014 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
{
"name": "lwc-typescript-boilerplate",
"private": true,
"version": "1.0.0",
"description": "LWC Typescript boilerplate",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c scripts/rollup.config.js",
"start": "open public/index.html"
},
"keywords": [
"typescript",
"lwc",
"boilerplate"
],
"author": "Diego Ferreiro Val",
"license": "MIT",
"devDependencies": {
"@babel/core": "~7.5.5",
"@babel/types": "~7.5.5",
"@babel/plugin-transform-typescript": "~7.5.5",
"@lwc/compiler": "^1.0.0",
"@lwc/engine": "^1.0.0",
"@lwc/synthetic-shadow": "^1.0.0",
"@lwc/jest-preset": "^1.0.0",
"@lwc/rollup-plugin": "^1.0.0",
"@salesforce/eslint-config-lwc": "~0.3.0",
"eslint": "~5.16.0",
"jest": "~24.8.0",
"rollup": "~1.17.0",
"rollup-plugin-compat": "~0.21.7",
"rollup-plugin-replace": "~2.2.0",
"rollup-plugin-terser": "~5.1.1",
"typescript": "~3.5.3"
}
}