-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.27 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
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
{
"private": true,
"version": "1.0.1",
"description": "Pulkka UI - A user interface for storing observations with timestamps",
"main": "",
"scripts": {
"build": "yarn dist",
"clean": "find dist -mindepth 1 -not -name 'README.md' -delete 2>/dev/null || true",
"copy": "copyfiles -f ./src/index.html ./src/pulkka.appcache ./dist && copyfiles -u 1 ./src/favicons/* ./src/img/* ./dist",
"dist": "npm run copy & webpack --env=dist",
"lint": "eslint ./src",
"typecheck": "tsc --noEmit",
"posttest": "npm run lint",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"serve": "node server.js --env=dev",
"serve:dist": "node server.js --env=dist",
"start": "npm run copy && cp -n .env.example .env; node server.js --env=dev",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": "",
"keywords": [],
"author": "Timo Tuominen <tituomin@gmail.com>",
"dependencies": {
"autoprefixer": "^10.4.19",
"bootstrap-sass": "^3.4.3",
"core-js": "^3.27.1",
"history": "^5.3.0",
"jquery": "^3.7.1",
"lodash": "^4.17.23",
"moment": "^2.30.1",
"normalize.css": "^8.0.1",
"process": "^0.11.10",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "^9.1.2",
"react-router": "^6.30.2",
"react-router-dom": "^6.30.2",
"redux": "^5.0.1",
"redux-actions": "^3.0.0",
"redux-persist": "^6.0.0",
"redux-promise": "^0.6.0",
"sass": "^1.77.4",
"urijs": "^1.19.11"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.24.7",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.28.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.21",
"@types/node": "^25.0.3",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@types/react-redux": "^7.1.34",
"@types/redux": "^3.6.31",
"@types/redux-actions": "^2.6.5",
"@types/urijs": "^1.19.26",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"babel-loader": "^9.1.3",
"copyfiles": "^2.4.1",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.1.1",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-webpack-plugin": "^5.0.2",
"globals": "^17.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"minimist": "^1.2.8",
"null-loader": "^4.0.1",
"react-refresh": "^0.14.2",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.2"
},
"browserslist": [
"defaults"
],
"resolutions": {
"@babel/runtime": "^7.26.10"
}
}