This repository has been archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
83 lines (83 loc) · 2.03 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
{
"name": "@americanexpress/one-app-dev-bundler",
"version": "1.7.3",
"description": "A development bundler focussed on speed and modern features.",
"main": "index.js",
"bin": {
"bundle-analysis": "bin/bundle-analysis.js"
},
"scripts": {
"test": "npm run test:lint && npm run test:unit && npm run test:git-history",
"test:lint": "eslint --ext js,jsx,mjs,snap,md .",
"test:unit": "jest",
"test:git-history": "commitlint --from origin/main --to HEAD"
},
"keywords": [
"one",
"amex",
"bundler",
"react",
"esbuild"
],
"contributors": [
"Michael Rochester <[email protected]> (https://github.com/code-forger)"
],
"module": "true",
"type": "module",
"dependencies": {
"@americanexpress/one-app-locale-bundler": "^6.6.0",
"@fal-works/esbuild-plugin-global-externals": "^2.1.2",
"@fullhuman/postcss-purgecss": "^3.0.0",
"@swc/core": "^1.2.196",
"acorn": "^8.8.0",
"acorn-walk": "^8.2.0",
"chalk": "^4.1.2",
"cssnano": "^6.0.3",
"esbuild": "^0.15.9",
"esbuild-plugin-polyfill-node": "^0.3.0",
"esbuild-plugin-svgr": "^1.0.1",
"filesize": "^9.0.1",
"glob-all": "^3.3.0",
"lodash.snakecase": "^4.1.1",
"ms": "^2.1.3",
"postcss": "^8.4.33",
"postcss-modules": "^6.0.0",
"read-pkg-up": "^9.0.0",
"regenerator-runtime": "^0.13.9",
"sass": "^1.68.0",
"ssri": "^7.1.0",
"ws": "^8.4.0"
},
"devDependencies": {
"@testing-library/react": "^12.1.5",
"hoist-non-react-statics": "^3.3.2",
"immutable": "^4.0.0",
"mock-fs": "^5.1.1",
"prop-types": "^15.8.1",
"react": "^16.7.0",
"react-dom": "^16.7.0"
},
"license": "Apache-2.0",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-case": [
2,
"always",
[
"pascal-case",
"camel-case",
"kebab-case"
]
],
"body-max-line-length": [
0
]
}
},
"publishConfig": {
"access": "public"
}
}