forked from multei/web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.69 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@multei/web",
"version": "0.1.0",
"description": "Multei! website project",
"repository": {
"type": "git",
"url": "https://github.com/multei/web"
},
"bugs": {
"url": "https://github.com/multei/web/issues"
},
"keywords": [
"gatsby",
"multei",
"react",
"web"
],
"author": "Multei!",
"private": true,
"scripts": {
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"build:ci": "CI=true gatsby build",
"build:local": "gatsby build",
"ci": "npm run build:ci && npm run testc && npm run codecov",
"clean": "gatsby clean",
"clean:install": "rm -rf node_modules/sharp && npm install",
"codecov": "codecov",
"cy:open": "cypress open",
"cy:run": "cypress run",
"deploy": "git push",
"dev": "npm run develop",
"develop": "gatsby develop --host ${npm_package_config_localhost} --port ${npm_package_config_port}",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"format:staged": "sh ./scripts/format-staged.sh",
"hook:precommit": "npm run format:staged && npm run test:staged",
"hook:prepush": "npm run format && npm test",
"open:local": "open http://${npm_package_config_localhost}:${npm_package_config_port}",
"ports": "lsof -iTCP -sTCP:LISTEN -n -P",
"serve": "gatsby serve",
"start": "npm run develop",
"test": "jest",
"test:e2e:ci": "npm run develop & wait-on http://${npm_package_config_localhost}:${npm_package_config_port} && npm run cy:run",
"test:e2e:prepush": "npm run develop & npm run cy:run",
"test:staged": "sh ./scripts/test-staged.sh",
"testc": "jest --coverage",
"testu": "jest -u",
"testw": "jest --watch"
},
"config": {
"localhost": "localhost",
"port": 8001
},
"license": "MIT",
"dependencies": {
"@material-ui/core": "4.9.14",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "4.0.0-alpha.53",
"@material-ui/styles": "4.9.14",
"@multei/themes": "1.0.0",
"clsx": "1.1.1",
"gatsby": "2.23.3",
"gatsby-image": "2.4.7",
"gatsby-plugin-canonical-urls": "2.3.4",
"gatsby-plugin-layout": "1.3.4",
"gatsby-plugin-manifest": "2.4.11",
"gatsby-plugin-material-ui": "2.1.9",
"gatsby-plugin-offline": "3.2.9",
"gatsby-plugin-prefetch-google-fonts": "1.4.3",
"gatsby-plugin-react-helmet": "3.3.4",
"gatsby-plugin-sharp": "2.6.11",
"gatsby-plugin-sitemap": "2.4.5",
"gatsby-source-filesystem": "2.3.11",
"gatsby-transformer-sharp": "2.5.5",
"metax": "1.2.1",
"muy": "1.1.0",
"prop-types": "15.7.2",
"query-string": "6.13.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "6.1.0",
"recoil": "0.0.7",
"use-global-hook": "0.1.12"
},
"devDependencies": {
"@hot-loader/react-dom": "16.13.0",
"@stryker-mutator/core": "3.2.4",
"@stryker-mutator/javascript-mutator": "3.2.4",
"@stryker-mutator/jest-runner": "3.2.4",
"@testing-library/cypress": "6.0.0",
"@testing-library/jest-dom": "5.9.0",
"@testing-library/react": "10.2.1",
"axe-core": "3.5.4",
"axios": "0.19.2",
"babel-jest": "26.0.1",
"babel-preset-gatsby": "0.4.9",
"codecov": "3.7.0",
"cypress": "4.7.0",
"cypress-axe": "0.8.1",
"cypress-file-upload": "4.0.7",
"dotenv": "8.2.0",
"husky": "4.2.5",
"identity-obj-proxy": "3.0.0",
"jest": "26.0.1",
"netlify-cli": "2.53.0",
"prettier": "2.0.5",
"react-test-renderer": "16.13.1",
"wait-on": "5.0.1"
},
"engines": {
"node": ">=12.6.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run hook:precommit",
"pre-push": "npm run hook:prepush"
}
},
"resolutions": {
"http-proxy": ">=1.18.1"
}
}