forked from nasa-gcn/gcn.nasa.gov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.73 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
{
"private": true,
"name": "gcn.nasa.gov",
"description": "General Coordinates Network web site",
"repository": {
"type": "git",
"url": "github:nasa/gcn.nasa.gov"
},
"license": "NASA-1.3",
"scripts": {
"build:remix": "remix build",
"build:sass": "gulp build-sass",
"build": "run-p build:*",
"dev:remix": "remix watch",
"dev:arc": "cross-env NODE_ENV=development arc sandbox",
"dev:sass": "gulp watch",
"dev": "remix build && run-p dev:*",
"prepare:sass": "gulp init",
"prepare:husky": "husky install",
"prepare": "run-p prepare:*"
},
"dependencies": {
"@architect/functions": "^5.0.2",
"@aws-sdk/client-cognito-identity-provider": "^3.47.0",
"@remix-run/architect": "^1.5.1",
"@remix-run/node": "^1.5.1",
"@remix-run/react": "^1.5.1",
"@trussworks/react-uswds": "^2.6.0",
"color-convert": "^2.0.1",
"cross-env": "^7.0.3",
"generate-password": "^1.7.0",
"highlight.js": "^11.4.0",
"memoizee": "^0.4.15",
"octokit": "^1.7.1",
"openid-client": "^5.1.2",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^17.0.2",
"react-tag-autocomplete": "^6.3.0",
"react-topbar-progress-indicator": "^4.1.1",
"remark-gfm": "^3.0.1",
"spin-delay": "^1.1.0"
},
"devDependencies": {
"@architect/architect": "^10.3.3",
"@remix-run/dev": "^1.5.1",
"@remix-run/eslint-config": "^1.5.1",
"@types/architect__functions": "^3.13.6",
"@types/color-convert": "^2.0.0",
"@types/memoizee": "^0.4.7",
"@types/react": "^17.0.24",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-dom": "^17.0.17",
"@types/react-tag-autocomplete": "^6.1.1",
"autoprefixer": "^10.4.2",
"del": "^6.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.3.0",
"gulp": "^4.0.2",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-svg-sprite": "^1.5.0",
"husky": "^8.0.1",
"lint-staged": "^12.1.7",
"nasawds": "^3.0.337",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.6",
"postcss-csso": "^6.0.0",
"prettier": "2.6.2",
"rehype-add-classes": "^1.0.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-external-links": "^1.0.1",
"rehype-highlight": "^5.0.2",
"rehype-slug": "^5.0.1",
"sass": "^1.49.7",
"typescript": "^4.5.5",
"uswds": "2.13.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false,
"prettier": {
"semi": false,
"singleQuote": true
},
"eslintConfig": {
"ignorePatterns": "*.mdx",
"extends": [
"@remix-run/eslint-config",
"@remix-run/eslint-config/node",
"prettier"
]
}
}