-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
52
53
54
55
{
"name": "awesome-css",
"description": "An Aurelia 2 client application.",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "???"
},
"license": "UNLICENSED",
"dependencies": {
"@aurelia/router": "latest",
"aurelia": "latest"
},
"devDependencies": {
"@aurelia/parcel-transformer": "latest",
"@aurelia/testing": "latest",
"@parcel/transformer-inline-string": "^2.9.3",
"@parcel/transformer-typescript-tsc": "^2.9.3",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"htmlhint": "^1.1.4",
"parcel": "^2.9.3",
"parcel-plugin-static-files-copy": "^2.6.0",
"parcel-reporter-static-files-copy": "^1.5.3",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
},
"scripts": {
"lint:js": "eslint src --ext .js,.ts",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:html": "htmlhint -c .htmlhintrc src",
"lint": "npm run lint:js && npm run lint:html && npm run lint:css",
"start": "parcel -p 9000",
"build": "parcel build --no-scope-hoist --no-source-maps"
},
"source": "index.html",
"targets": {
"default": {
"sourceMap": {
"inline": true
}
}
},
"aurelia": {
"hmr": false
},
"staticFiles": {
"staticPath": "./src/static",
"staticOutDir": "static"
}
}