-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.08 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
59
60
61
62
63
64
{
"name": "free-location-sheet",
"version": "0.0.1",
"description": "Free location belongings management system for home on Google Spreadsheets",
"main": "index.js",
"scripts": {
"test": "jest src/",
"test:watch": "npm test -- --watch",
"api-test": "jest apiTest/",
"api-test:watch": "npm run api-test -- --watch",
"start": "cp *.html build/ && webpack serve",
"build": "webpack",
"copy-statics": "mkdir -p build && cp *.html build && cp *.png build",
"build:staging": "npm run copy-statics && webpack --mode=production",
"build:production": "npm run copy-statics && webpack --mode=production",
"deploy": "npm run test && npm run build:production && firebase deploy"
},
"keywords": [],
"author": "Kenichiro Yasuda",
"license": "MIT",
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "*",
"@material-ui/pickers": "^3.3.11",
"@reduxjs/toolkit": "^1.9.7",
"@types/js-cookie": "^3.0.6",
"@zxing/library": "^0.21.3",
"interweave": "^12.9.0",
"interweave-autolink": "^4.4.3",
"jest-environment-jsdom": "^29.7.0",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"loose-envify": "^1.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.53.0",
"react-router-dom": "^5.3.3",
"react-to-print": "^2.15.1",
"redux-first-history": "^5.2.0",
"shellwords": "^0.1.1",
"uuid": "^3.4.0"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@babel/preset-typescript": "^7.24.7",
"@testing-library/react": "^11.2.6",
"@testing-library/react-hooks": "^5.1.2",
"@testing-library/user-event": "^13.1.3",
"babel-loader": "^9.2.1",
"fetch-mock-jest": "^1.5.1",
"googleapis": "^70.0.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"prettier": "2.8.8",
"webpack": "^5.94.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^5.1.0"
}
}