-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
{
"name": "csss-raspberry",
"version": "2.1.1",
"description": "A React component library.",
"license": "MIT",
"author": "SFU Computing Science Student Society <[email protected]> (https://sfucsss.org)",
"private": true,
"files": [
"dist",
"lib",
".babelrc"
],
"main": "dist/index.js",
"dependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.23.5",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"html2canvas": "^1.4.1",
"tailwindcss": "^3.4.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-router-dom": "^6.23.1"
},
"devDependencies": {
"csss-raspberry": "./dist",
"prettier": "^3.2.5",
"react-dom": "^18.3.1",
"react-scripts": "^5.0.1"
},
"scripts": {
"tailwind": "tailwindcss -i ./tailwind.css -o ./lib/tailwind.css",
"babel": "NODE_ENV=production babel ./lib --out-dir ./dist --copy-files",
"prepare": "npm run tailwind && npm run babel",
"lint": "prettier --write .",
"prestart": "npm run lint && npm run prepare",
"start": "react-scripts start"
},
"engines": {
"node": "^18",
"npm": "^9"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}