forked from efdevcon/devcon-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.33 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
{
"name": "devcon-website",
"description": "The annual conference for all Ethereum developers, researchers, thinkers, and makers.",
"author": "efdevcon",
"version": "0.1.0",
"license": "MIT",
"private": true,
"scripts": {
"build": "gatsby build",
"start": "gatsby develop",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
"lint": "eslint --fix 'src/**/*.{ts,tsx}'",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "jest --watch"
},
"dependencies": {
"gatsby": "^2.25.3",
"gatsby-plugin-netlify-cms": "^4.4.0",
"gatsby-plugin-typescript": "^2.6.0",
"gatsby-source-filesystem": "^2.5.0",
"gatsby-transformer-remark": "^2.10.0",
"netlify-cms-app": "^2.13.3",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.12.1",
"@types/jest": "^26.0.15",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-test-renderer": "^16.9.3",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^0.6.0",
"gatsby-plugin-root-import": "^2.0.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"react-test-renderer": "^17.0.1",
"typescript": "^4.1.2"
},
"jest": {
"modulePathIgnorePatterns": [
"node_modules"
]
}
}