-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.38 KB
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
{
"name": "csv",
"version": "1.0.0",
"description": "CSV Viewer",
"source": "src/index.html",
"scripts": {
"clean": "rimraf -rf dist",
"preserve": "npm run clean",
"prebuild": "npm run clean",
"build-github-pages": "npm run build -- --public-url=/csv/",
"serve": "parcel --no-cache --no-source-maps",
"build": "parcel build --no-cache --no-source-maps",
"start": "pm2 start 'npm run serve' --name app",
"restart": "pm2 restart app",
"stop": "pm2 kill",
"logs": "pm2 logs",
"test": "npm run build",
"dev": "npm run test -- --watchAll"
},
"keywords": [
"parcel",
"rimraf",
"sass",
"jest",
"pm2"
],
"author": "Maksim Kostromin / GitHub: daggerok",
"license": "MIT",
"dependencies": {
"clsx": "2.1.1",
"lucide-react": "1.24.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"recharts": "3.9.2",
"tailwind-merge": "3.6.0"
},
"devDependencies": {
"@parcel/transformer-sass": "2.16.4",
"@types/node": "26.1.1",
"jest": "30.4.2",
"parcel": "2.16.4",
"pm2": "7.0.3",
"rimraf": "6.1.3",
"sass": "1.101.0",
"@tailwindcss/postcss": "4.3.2",
"@types/papaparse": "5.5.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"papaparse": "5.5.4",
"tailwindcss": "4.3.2"
},
"postcss": {
"plugins": {
"@tailwindcss/postcss": {}
}
}
}