-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.01 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
{
"name": "@graaphi/gtk-ui",
"version": "0.1.0",
"description": "Custom CSS rules for customizing GTK-based applications",
"scripts": {
"start": "yarn docs:serve",
"docs:serve": "./node_modules/.bin/gatsby develop",
"docs:clean": "./node_modules/.bin/gatsby clean",
"docs:build": "yarn docs:clean && STAGE=production ./node_modules/.bin/gatsby build --prefix-paths",
"css:watch": "postcss ./css/gtk-ui.css --output ./dist/gtk-ui.css --watch",
"css:lint": "stylelint \"css/**/*.css\" --cache --cache-location .cache/.stylelintcache",
"css:lint:fix": "stylelint \"css/**/*.css\" --cache --cache-location .cache/.stylelintcache --fix"
},
"dependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@loadable/babel-plugin": "^5.13.0",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"babel-eslint": "^10.1.0",
"babel-preset-gatsby": "^0.5.1",
"core-js": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-react-app": "^5.2.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "2.x",
"gatsby": "^2.23.22",
"gatsby-cli": "^2.12.59",
"gatsby-plugin-eslint": "^2.0.8",
"hex-rgb": "^4.1.0",
"postcss": "^8.2.10",
"postcss-cli": "^7.1.1",
"postcss-easy-import": "^3.0.0",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.3",
"postcss-scss": "^2.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-refresh": "^0.8.3",
"require-dir": "^1.2.0",
"run-sequence": "^2.2.1",
"sass": "^1.26.10",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0",
"tailwindcss": "^1.6.0",
"typescript": "^3.9.6",
"webpack": "^4.0.0"
},
"files": [
"dist/*.{css,map}",
"scss/**/*.scss"
]
}