-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.6 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.6 KB
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
{
"name": "devchallenge-18-frontend-code",
"version": "1.0.0",
"description": "DEV challege XVIII frontend code solution",
"license": "MIT",
"author": "async-devil",
"repository": {
"type": "git",
"url": "git+https://github.com/async-devil/devchallenge-18-frontend-code.git"
},
"bugs": {
"url": "https://github.com/async-devil/devchallenge-18-frontend-code/issues"
},
"homepage": "https://github.com/async-devil/devchallenge-18-frontend-code#readme",
"keywords": [
"challenge",
"devchallenge18",
"frontend-code"
],
"scripts": {
"start": "npm run build && serve dist -l 3000",
"dev": "npm run copy && parcel src/html/*.html --port 3000",
"build": "npm run copy && parcel build src/html/*.html",
"copy": "rm -rf dist && mkdir dist && cp src/config/.htaccess src/config/browserconfig.xml src/config/robots.txt dist"
},
"dependencies": {
"parcel": "^2.0.1",
"serve": "^13.0.2"
},
"devDependencies": {
"@parcel/packager-raw-url": "^2.0.1",
"@parcel/transformer-sass": "^2.0.1",
"@parcel/transformer-typescript-tsc": "^2.0.1",
"@parcel/transformer-webmanifest": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.1.0",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-sonarjs": "^0.10.0",
"esprima": "^4.0.1",
"prettier": "^2.4.1",
"sass": "^1.43.2",
"typescript": "^4.4.4"
}
}