-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.56 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
{
"name": "react-base-kit",
"version": "0.5.3",
"description": "React utilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:sultandilaram/react-base-kit.git",
"license": "MIT",
"scripts": {
"test": "mv ./src/index.ts ./src/_index.ts",
"start": "react-scripts start",
"dev": "concurrently \"yarn sass:build -w\" \"yarn start \" ",
"reset": "mv ./src/_index.ts ./src/index.ts && rm -rf dist && mkdir dist",
"sass:build": "node-sass --include-path scss src/styles/index.scss -o src/styles",
"babel:build": "babel src --extensions \".tsx,.ts\" -d dist --copy-files --no-copy-ignored",
"build": "yarn reset && yarn sass:build && yarn babel:build && tsc"
},
"dependencies": {
"axios": "^0.27.2",
"react": "^18.2.0",
"react-icons": "^4.4.0",
"react-router-dom": "^6.6.2",
"react-spring": "^9.5.4",
"sass": "^1.54.9",
"typescript": "^4.8.3"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.0",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"concurrently": "^7.4.0",
"node-sass": "^7.0.3",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}