-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
{
"name": "mondrian",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "gatsby develop",
"combine": "npx ts-node ./scripts/combine",
"scrape": "npx ts-node ./scripts/scrape-meta",
"build": "gatsby build --prefix-paths",
"serve": "gatsby serve",
"build-serve": "npm run build && npm run serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flexiproducts/mondrian.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/flexiproducts/mondrian/issues"
},
"homepage": "https://github.com/flexiproducts/mondrian#readme",
"dependencies": {
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@types/react-helmet": "^6.1.0",
"@types/styled-components": "^5.1.4",
"got": "^8.3.2",
"jsdom": "^16.5.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@flexi/eslint-config": "git+https://github.com/flexiproducts/eslint-config.git",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"gatsby": "^2.26.1",
"gatsby-cli": "^2.13.1",
"gatsby-plugin-react-helmet": "^3.4.0",
"gatsby-plugin-styled-components": "^3.4.0",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "eslint --fix"
}
}
}