-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.41 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": "@dcx/navbar",
"scripts": {
"start": "webpack serve",
"build": "NODE_ENV=production webpack",
"build:watch": "NODE_ENV=production webpack --watch --progress",
"serve": "servor dist/ 8080",
"test": "echo \"This template does not include a test runner by default.\" && exit 1",
"deploy": "yarn build && cp CORS dist/ && surge ./dist glimmer-mf-navbar.surge.sh",
"format": "prettier --write \"src/**/*.js\"",
"lint": "prettier --check \"src/**/*.js\"",
"watch": "run-p build:watch serve"
},
"dependencies": {
"@glimmer/component": "2.0.0-beta.11",
"@glimmer/core": "2.0.0-beta.11",
"@glimmer/helper": "2.0.0-beta.11",
"@glimmer/modifier": "2.0.0-beta.11",
"@glimmer/tracking": "2.0.0-beta.11",
"history": "^5.0.0",
"single-spa": "^5.8.3"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@glimmer/babel-plugin-glimmer-env": "^2.0.0-beta.1",
"@glimmer/babel-plugin-strict-template-precompile": "^2.0.0-beta.11",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"html-webpack-plugin": "^4.5.1",
"npm-run-all": "^4.1.5",
"style-loader": "^2.0.0",
"webpack": "^5.10.3",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}