-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.81 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "bookline_frontend_test",
"version": "1.0.0",
"description": "Bookline Frontend Test",
"author": "bookline.io",
"license": "MIT",
"watch": {
"lint:es": {
"patterns": [
"src"
],
"extensions": "ts, js, json",
"quiet": false
},
"lint:style": {
"patterns": [
"src"
],
"extensions": "scss, sass, css",
"quiet": false
}
},
"scripts": {
"dev": "npm-run-all --parallel serve watch",
"serve": "rm -rf dist/* .parcel-cache/* && parcel serve ./src/index.pug",
"build": "rm -rf dist/* .parcel-cache/* && npm run build-dist",
"build-dist": "parcel build --dist-dir ./dist ./src/index.pug",
"http-server": "http-server ./dist --proxy http://localhost:8888/api/",
"lint:es": "eslint --ignore-path .gitignore \"**/*.js\"",
"lint:style": "stylelint \"**/*.scss\"",
"lint": "npm run lint:es && npm run lint:style",
"watch": "npm-watch",
"db": "json-server ./db/db.json -c json-server.json -r routes.json"
},
"devDependencies": {
"@parcel/transformer-pug": "^2.0.0-beta.3.1",
"@parcel/transformer-sass": "^2.0.0-beta.3.1",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-watch": "^7.0.0",
"json-server": "^0.16.3",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.9.0",
"parcel": "^2.0.0-beta.3.1",
"postcss": "^8.2.10",
"pug": "^3.0.2",
"sass": "^1.32.8",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-scss": "^3.19.0"
},
"dependencies": {
"autoprefixer": "^10.2.5",
"babel-preset-env": "^1.7.0",
"modern-normalize": "^1.0.0",
"prettier": "^2.2.1",
"tiny-slider": "^2.9.3"
}
}