-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 1.06 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
{
"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": "npm run build && surge ./build todolist-glimmer-snowpack.surge.sh"
},
"dependencies": {
"@glimmerx/component": "^0.2.5",
"@glimmerx/core": "^0.2.5",
"@glimmerx/modifier": "^0.2.5"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@glimmer/babel-plugin-glimmer-env": "^2.0.0-beta.1",
"@glimmerx/babel-plugin-component-templates": "^0.2.5",
"@glimmerx/eslint-plugin": "^0.2.5",
"@snowpack/babel-plugin-package-import": "^1.1.5",
"@snowpack/plugin-babel": "^2.1.4",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"snowpack": "^2.17.1",
"surge": "^0.21.7"
}
}