-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.48 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
45
46
47
48
49
50
51
{
"name": "au2-multitab",
"description": "An Aurelia 2 client application.",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "???"
},
"license": "UNLICENSED",
"dependencies": {
"aurelia": "latest",
"bootstrap": "^5.1.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"eslint": "^8.7.0",
"@types/lodash": "^4.14.178",
"@aurelia/testing": "latest",
"htmlhint": "^1.1.1",
"sass-lint": "^1.13.1",
"rimraf": "^3.0.2",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"html-webpack-plugin": "^5.5.0",
"webpack-bundle-analyzer": "^4.5.0",
"style-loader": "^3.3.1",
"css-loader": "^6.5.1",
"dotenv-webpack": "^7.0.3",
"@aurelia/webpack-loader": "latest",
"ts-loader": "^9.2.6",
"sass-loader": "^12.4.0",
"sass": "^1.49.0",
"postcss-loader": "^6.2.1",
"postcss": "^8.4.5",
"autoprefixer": "^10.4.2",
"@types/node": "^17.0.10",
"typescript": "^4.5.5",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0"
},
"scripts": {
"lint:js": "eslint src test --ext .js,.ts",
"lint:css": "sass-lint -c .sass-lint.yml \"src/**/*.scss\"",
"lint:html": "htmlhint -c .htmlhintrc src",
"lint": "npm run lint:js && npm run lint:html && npm run lint:css",
"start": "webpack serve",
"build": "rimraf dist && webpack --env production",
"analyze": "rimraf dist && webpack --env production --analyze"
}
}