-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.11 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
{
"name": "bellman",
"version": "1.0.0",
"description": "2021-fall computer science projects",
"main": "dist/index.js",
"repository": "https://github.com/syd03098/bellman.git",
"author": "yonghokim",
"license": "MIT",
"scripts": {
"start": "electron dist/index.js",
"dev": "cross-env NODE_ENV=development webpack-cli --config webpack.renderer.config.js --watch",
"dev:main": "cross-env NODE_ENV=development node electron-dev.js",
"build:renderer": "cross-env NODE_ENV=production webpack-cli --config webpack.renderer.config.js",
"build:main": "cross-env NODE_ENV=production webpack-cli --config webpack.main.config.js",
"release": "node script/package.js"
},
"dependencies": {
"date-fns": "^2.25.0",
"react": "^17.0.2",
"react-countdown": "^2.3.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.0.2",
"react-select": "^5.1.0",
"reakit": "^1.3.10",
"styled-components": "^5.3.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/node": "^16.11.0",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.3.2",
"@types/styled-components": "^5.1.15",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.13.2",
"copy-webpack-plugin": "6.4.0",
"cross-env": "^7.0.3",
"electron": "15.2.0",
"electron-builder": "^22.14.5",
"eslint": "7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^4.5.2",
"prettier": "^2.4.1",
"typescript": "^4.4.4",
"webpack": "4.46.0",
"webpack-cli": "3.3.12"
}
}