This repository was archived by the owner on Nov 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.8 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.8 KB
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
{
"name": "exoframe-website",
"description": "Exoframe documentation website",
"version": "1.0.0",
"author": "",
"keywords": [
"exoframe"
],
"license": "MIT",
"private": true,
"scripts": {
"start": "yarn develop",
"build": "gatsby build",
"develop": "gatsby develop",
"lint:fix": "prettier --write 'src/**/*.{ts,tsx,scss,md}' && tslint --fix 'src/**/*.{ts,tsx}' -p tsconfig.json && stylelint --fix 'src/**/*.scss'",
"lint:styles": "stylelint 'src/**/*.scss'",
"lint:code": "tslint 'src/**/*.{ts,tsx}' -p tsconfig.json",
"lint": "yarn lint:code"
},
"devDependencies": {
"@deckdeckgo/highlight-code": "^1.0.2",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.8",
"@types/react-helmet": "^5.0.7",
"gatsby": "^2.0.0",
"gatsby-plugin-catch-links": "^2.2.3",
"gatsby-plugin-manifest": "^2.0.2",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sass": "^2.2.3",
"gatsby-plugin-typescript": "^2.0.0",
"gatsby-remark-autolink-headers": "^2.2.3",
"gatsby-remark-highlight-code": "^2.2.0",
"gatsby-source-filesystem": "^2.0.1",
"gatsby-source-graphql": "^2.4.2",
"gatsby-transformer-remark": "^2.1.5",
"husky": "^1.1.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-helmet": "^5.2.0",
"sass": "^1.26.3",
"stylelint": "^9.6.0",
"stylelint-config-css-modules": "^1.3.0",
"stylelint-config-prettier": "^4.0.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-order": "^1.0.0",
"stylelint-scss": "^3.3.1",
"tslint": "^5.11.0",
"tslint-config-blvd": "^1.2.1",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^2.0.0",
"typescript": "^3.1.1"
}
}