This repository has been archived by the owner on Jan 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
96 lines (96 loc) · 2.92 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
{
"private": true,
"scripts": {
"start": "npm run clean && webpack --env=development --hide-modules --watch",
"build": "npm run clean && webpack --env=production",
"build:dev": "npm run clean && webpack --env=development",
"clean": "rm -rf public/dist",
"test": "jest --watch",
"test:ci": "jest",
"heroku-postbuild": "npm run build",
"lint": "eslint --fix --ext .js resources/assets",
"format": "npm run format:css && npm run format:js && npm run format:md && npm run format:php",
"format:css": "prettier --write \"resources/**/*.{css,scss}\"",
"format:js": "prettier --write \"resources/**/*.{js,graphql}\"",
"format:md": "prettier --write \"docs/**/*.md\"",
"format:php": "prettier --write \"{app,config,database,resources,routes,tests}/**/*.php\" \"!resources/views/**\""
},
"engines": {
"node": "8.x",
"npm": "6.x"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"singleQuote": true,
"phpVersion": "7.4",
"trailingComma": "all"
},
"babel": {
"presets": [
"@dosomething"
]
},
"jest": {
"testURL": "http://rogue.dev",
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/resources/assets/__mocks__/fileMock.js",
"\\.(css|scss)$": "identity-obj-proxy"
}
},
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@babel/runtime": "^7.12.5",
"@dosomething/forge": "^6.9.1",
"@dosomething/gateway": "^2.0.1",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-batch-http": "^1.2.14",
"apollo-link-context": "^1.0.20",
"apollo-link-error": "^1.1.13",
"apollo-link-persisted-queries": "^0.2.2",
"classnames": "^2.2.6",
"core-js": "^3.8.2",
"date-fns": "^1.30.1",
"dosomething-modal": "^0.3.4",
"environment-badge": "^1.3.1",
"graphql": "^14.7.0",
"graphql-tag": "^2.11.0",
"lodash": "^4.17.20",
"prop-types": "^15.6.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-useportal": "^1.0.13",
"usa-states": "0.0.5"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@dosomething/babel-preset": "^3.2.0",
"@dosomething/eslint-config": "^5.0.1",
"@dosomething/webpack-config": "^5.1.0",
"@prettier/plugin-php": "^0.14.3",
"babel-jest": "^24.8.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"eslint-loader": "^1.9.0",
"husky": "^3.0.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"prettier": "1.18.2",
"pretty-quick": "^1.11.1",
"react-test-renderer": "^16.14.0",
"sinon": "^7.5.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
}
}