-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.79 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
{
"name": "local-post-its",
"version": "1.0.0",
"description": "A post-its web application that works with the IndexedDB API",
"main": "src/index.js",
"scripts": {
"build": "NODE_ENV=production webpack --mode production",
"start:build": "NODE_ENV=production http-server -p 8080 build",
"start": "NODE_ENV=test webpack serve --mode=development",
"lint": "eslint ./src",
"cypress:open": "cypress open",
"test:e2e": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lbotano/local-post-its.git"
},
"keywords": [
"post-its",
"webapp",
"react",
"indexeddb"
],
"author": "Lautaro Bernabé Otaño (lbotano)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/lbotano/local-post-its/issues"
},
"homepage": "https://github.com/lbotano/local-post-its#readme",
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"cypress": "^8.5.0",
"eslint": "^7.32.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-react": "^7.25.1",
"html-webpack-plugin": "^5.3.2",
"http-server": "^13.0.2",
"redux-devtools-extension": "^2.13.9",
"style-loader": "^3.2.1",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.0",
"workbox-webpack-plugin": "^6.3.0"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"localforage": "^1.10.0",
"moment": "^2.29.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.5",
"redux": "^4.1.1",
"redux-thunk": "^2.3.0",
"uuid": "^8.3.2"
}
}