-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.18 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
{
"name": "timesense-timer",
"version": "2.0.0",
"description": "A visual timer to help with your sense of how much time has passed and how much is left",
"scripts": {
"dev": "vite",
"build": "vite build --emptyOutDir",
"preview": "vite preview",
"lint:eslint": "eslint . --ext .js,.jsx",
"fix:eslint": "eslint --fix . --ext .js,.jsx",
"lint:stylelint": "stylelint **/*.{css,scss,jsx}",
"fix:stylelint": "stylelint --fix ./src/**/*.{css, scss,jsx}",
"test": "jest --config=jest.config.js",
"new-component": "new-component"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThinkerDreamer/TimeSense-Timer.git"
},
"author": "Angel Hudgins",
"license": "ISC",
"bugs": {
"url": "https://github.com/ThinkerDreamer/TimeSense-Timer/issues"
},
"homepage": "https://github.com/ThinkerDreamer/TimeSense-Timer#readme",
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@vitejs/plugin-react": "^2.0.1",
"canvas-confetti": "^1.6.0",
"esbuild": "^0.17.11",
"new-component": "^5.0.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-countdown-circle-timer": "^3.2.1",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-router-dom": "^6.3.0",
"sass": "^1.54.5",
"vite": "^3.0.9"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@emotion/babel-plugin": "^11.10.2",
"@emotion/babel-preset-css-prop": "^11.10.0",
"@namics/stylelint-bem": "^7.0.0",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@testing-library/dom": "^8.17.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"autoprefixer": "^10.4.8",
"babel-jest": "^29.5.0",
"babel-loader": "^8.2.5",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.0.1",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^21.1.1",
"jsdom-global": "^3.0.2",
"postcss": "^8.4.16",
"postcss-scss": "^4.0.4",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"prettier-plugin-style-order": "^0.2.2",
"prettier-plugin-tailwindcss": "^0.1.13",
"react-test-renderer": "^18.2.0",
"stylelint": "^14.11.0",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-scss": "^4.3.0",
"typescript": "^4.8.2",
"webpack": "^5.74.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}