-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.31 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
{
"name": "emojinator",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"start": "NODE_ENV=development BASE_URL=http://localhost:8080 eleventy --serve",
"build": "NODE_ENV=production eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sophiekoonin/emojinator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sophiekoonin/emojinator/issues"
},
"homepage": "https://github.com/sophiekoonin/emojinator#readme",
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"autoprefixer": "^10.4.8",
"concurrently": "6.3.0",
"cssnano": "^5.1.13",
"md5": "^2.3.0",
"postcss": "^8.4.16",
"postcss-cli": "10.0.0",
"sass": "1.54.7"
},
"prettier": {
"semi": false,
"tabWidth": 2
},
"eslintConfig": {
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"env": {
"browser": true,
"es6": true
},
"rules": {
"no-delete-var": "off",
"no-console": "warn"
},
"ignorePatterns": [
"src/assets/scripts/*.js",
"src/js/fabric.js"
],
"globals": {
"fabric": true,
"GIF": true
}
},
"dependencies": {
"emojibase-data": "7.0.1",
"twemoji": "14.0.2"
}
}