-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "prism-website",
"version": "1.0.0",
"private": true,
"author": "Sankarsan Kampa",
"license": "GPL-3.0",
"scripts": {
"build": "./node_modules/.bin/gatsby build",
"deploy": "./node_modules/.bin/gatsby build --prefix-paths && ./node_modules/.bin/gh-pages -d public",
"lint": "./node_modules/.bin/tslint -p tsconfig.json",
"start": "./node_modules/.bin/gatsby develop",
"test": "yarn lint && yarn transpile",
"transpile": "./node_modules/.bin/tsc"
},
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.12",
"gatsby": "^2.10.0",
"gatsby-plugin-emotion": "^4.1.0",
"gatsby-plugin-react-helmet": "^3.1.0",
"gatsby-plugin-typescript": "^2.1.0",
"gatsby-source-filesystem": "^2.1.0",
"gatsby-transformer-remark": "^2.5.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-icons": "^3.7.0",
"typescript": "^3.5.2"
},
"devDependencies": {
"@types/node": "^13.9.1",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"@types/react-helmet": "^5.0.8",
"gh-pages": "^2.0.1",
"tslint": "^6.1.0"
}
}