-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
91 lines (91 loc) · 2.84 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
{
"name": "project-seed",
"description": "Starter application by Development Seed",
"version": "6.0.0",
"repository": {
"type": "git",
"url": "https://github.com/developmentseed/project-seed.git"
},
"author": {
"name": "Development Seed",
"url": "https://developmentseed.org"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/developmentseed/project-seed/issues"
},
"homepage": "https://github.com/developmentseed/project-seed",
"scripts": {
"serve": "NODE_ENV=development gulp serve",
"build": "NODE_ENV=production gulp",
"stage": "NODE_ENV=staging gulp",
"clean": "gulp clean",
"lint": "yarn lint:scripts && yarn lint:css",
"lint:scripts": "eslint app/scripts/",
"lint:css": "stylelint 'app/scripts/**/*.{js,ts,jsx,tsx}'",
"ts-check": "yarn tsc --noEmit --skipLibCheck",
"test": "jest"
},
"engines": {
"node": "18.x"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@parcel/reporter-bundle-analyzer": "^2.8.3",
"@parcel/reporter-bundle-buddy": "^2.8.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"babel-jest": "^29.4.3",
"babel-plugin-styled-components": "^2.0.7",
"buffer": "^6.0.3",
"del": "^7.0.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-inclusive-language": "^2.2.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"events": "^3.3.0",
"fancy-log": "^2.0.0",
"fast-glob": "^3.2.12",
"fs-extra": "^11.1.0",
"gulp": "^4.0.2",
"jest": "^29.4.3",
"jest-css-modules-transform": "^4.4.2",
"jest-environment-jsdom": "^29.4.3",
"parcel": "^2.8.3",
"portscanner": "^2.2.0",
"postcss-styled-syntax": "^0.4.0",
"posthtml-expressions": "^1.11.0",
"prettier": "^2.8.4",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"stylelint": "^15.1",
"stylelint-config-standard": "^30.0.1",
"stylelint-config-styled-components": "^0.1.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"alias": {
"$components": "~/app/scripts/components",
"$styles": "~/app/scripts/styles",
"$utils": "~/app/scripts/utils",
"$test": "~/test"
}
}