-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.02 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "free-the-uyghurs",
"version": "0.2.0",
"title": "Free The Uyghurs",
"description": "The human rights abuses the Uyghur people are facing at the hands of the Chinese government are worth our undivided attention.",
"main": "src/index.pug",
"private": true,
"scripts": {
"build:modernizr": "npx modernizr -c modernizr-config.json -d ./src/scripts/modernizr.js",
"build:web": "parcel build --no-source-maps src/index.pug src/robots.txt",
"build": "yarn build:modernizr && yarn build:web",
"clean": "rm -rf ./.cache/ ./dist/",
"lint:fix": "eslint . --fix && stylelint **/*.scss --fix",
"lint": "eslint . && stylelint **/*.scss",
"pretty:fix": "prettier --write .",
"pretty": "prettier --check .",
"start": "parcel src/index.pug",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joaocarmo/free-the-uyghurs.git"
},
"keywords": [
"free",
"uyghurs",
"genocide",
"china",
"xinjiang",
"slavery",
"torture",
"muslims",
"islam",
"discrimination",
"racism",
"prosecution"
],
"author": "João Carmo",
"license": "MIT",
"bugs": {
"url": "https://github.com/joaocarmo/free-the-uyghurs/issues"
},
"homepage": "https://github.com/joaocarmo/free-the-uyghurs#readme",
"dependencies": {
"dialog-polyfill": "^0.5.6",
"lodash.debounce": "^4.0.8",
"normalize.css": "^8.0.1",
"parcel-bundler": "^1.12.5",
"pug": "^3.0.2",
"sass": "^1.32.8",
"scroll-horizontal": "^1.0.8",
"typography": "^0.16.19",
"typography-theme-judah": "^0.16.19"
},
"devDependencies": {
"@prettier/plugin-pug": "^1.13.5",
"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",
"prettier": "^2.2.1",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-sass-guidelines": "^8.0.0"
}
}