-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.24 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
{
"name": "snowpack-app-template-glimmer",
"description": "A preconfigured template for Snowpack with Glimmer",
"version": "1.1.0",
"license": "MIT",
"homepage": "https://github.com/rajasegar/snowpack-app-template-glimmer",
"repository": {
"type": "git",
"url": "https://github.com/rajasegar/snowpack-app-template-glimmer.git"
},
"keywords": [
"csa-template",
"glimmer",
"snowpack",
"glimmerjs"
],
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"test": "echo \"This template does not include a test runner by default.\" && exit 1",
"format": "prettier --write \"src/**/*.js\"",
"lint": "prettier --check \"src/**/*.js\"",
"deploy": "git push && git push --tags && npm publish"
},
"dependencies": {
"@glimmerx/component": "^0.2.5",
"@glimmerx/core": "^0.2.5",
"@glimmerx/modifier": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@glimmerx/babel-plugin-component-templates": "^0.2.5",
"@snowpack/babel-plugin-package-import": "^1.1.5",
"@snowpack/plugin-babel": "^2.1.4",
"prettier": "^2.0.5",
"snowpack": "^2.17.1"
}
}