forked from CSSS/csss-raspberry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "csss-raspberry",
"version": "1.2.0",
"description": "A React component library.",
"license": "MIT",
"author": "SFU Computing Science Student Society <[email protected]> (https://sfucsss.org)",
"private": true,
"files": [
"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"
},
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"csss-raspberry": "./dist",
"prettier": "^3.2.5",
"react-dom": "^18.3.1",
"react-scripts": "^5.0.1"
},
"scripts": {
"build": "NODE_ENV=production babel lib --out-dir dist --copy-files",
"prepare": "npm run build",
"lint": "prettier --write .",
"prestart": "npm run lint && npm run build",
"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"
]
}
}