-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.3 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
{
"name": "webcompat-editor-testing",
"version": "1.0.0",
"description": "A dashboard to test editors",
"license": "MPL-2.0",
"private": true,
"author": "webcompat",
"engines": {
"node": ">=13"
},
"scripts": {
"build": "parcel build ./src/pages/**/*.html",
"build:ghPage": "parcel build ./src/pages/**/*.html --public-url https://webcompat.github.io/webcompat-editor-testing/",
"dev": "parcel ./src/pages/**/*.html",
"fix": "npm run lint:fix:css && npm run lint:fix:html",
"lint": "npm run lint:css && npm run lint:html && npm run lint:js",
"lint:fix": "npm run lint:fix:html && npm run lint:fix:css && npm run lint:fix:js",
"lint:html": "prettier --check 'src/**/*.html'",
"lint:js": "prettier --check 'src/**/*.js'",
"lint:fix:html": "prettier --write 'src/**/*.html'",
"lint:fix:js": "prettier --write 'src/**/*.js'",
"lint:css": "stylelint './src/**/*.css'",
"lint:fix:css": "npm run lint:css -- --fix"
},
"dependencies": {
"draft-js": "^0.11.7",
"parcel-bundler": "^1.12.5",
"postcss": "^8.4.7",
"postcss-preset-env": "^6.7.0",
"posthtml-extend": "^0.6.2",
"prettier": "^2.5.1",
"quill": "^1.3.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0"
}
}