forked from ai/easings.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.51 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
{
"name": "easings.net",
"scripts": {
"start": "node ./scripts/start.js",
"build": "NODE_ENV=production node ./scripts/build.js",
"lint": "eslint ./src/**/*.{ts,js} ./scripts/*.js"
},
"browserslist": [
"defaults",
"not ie 11",
"not ie_mob 11"
],
"postcss": {
"plugins": {
"postcss-dark-theme-class": {},
"postcss-pxtorem": {
"rootValue": 16,
"mediaQuery": true,
"propList": [
"font",
"font-size",
"line-height",
"letter-spacing",
"margin",
"padding"
]
},
"postcss-flexbugs-fixes": {},
"postcss-font-family-system-ui": {},
"autoprefixer": {}
}
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"autoprefixer": "^9.8.6",
"css-mqpacker": "^7.0.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"express": "^4.17.1",
"htmlnano": "^0.2.6",
"js-yaml": "^3.14.0",
"mustache": "^4.0.1",
"parcel-bundler": "^1.12.4",
"postcss": "^7.0.32",
"postcss-dark-theme-class": "^0.4.0",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-font-family-system-ui": "^4.3.0",
"postcss-preset-env": "^6.7.0",
"postcss-pxtorem": "^5.1.1",
"posthtml": "^0.13.3",
"prettier": "^2.1.0",
"pug": "^3.0.0",
"terser": "^5.2.1",
"typescript": "^4.0.2"
},
"dependencies": {
"focus-visible": "^5.1.0"
}
}