forked from tobi4120/notion-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.27 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
65
66
{
"name": "notion-clone",
"version": "1.0.0",
"description": "For this project I am creating a Notion clone on a smaller scale. This website will allow users to create pages, add notes to those pages, add to-do's, link to other pages and more!",
"main": "index.js",
"engines": {
"node": "14.x"
},
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/pickers": "^3.2.10",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.10.0",
"axios": "^0.21.0",
"date-fns": "^2.17.0",
"framer-motion": "^7.1.0",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^18.2.0",
"react-redux": "^7.2.2",
"react-router-dom": "^6.3.0",
"react-textarea-autosize": "^8.3.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-form": "^8.3.7",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"file-loader": "^6.2.0",
"node-sass": "^7.0.1",
"webpack": "^5.8.0",
"webpack-cli": "^4.2.0"
},
"scripts": {
"dev": "concurrently \"npm run startApp\" \"python3 manage.py runserver\" \"npm run compile:sass\"",
"startApp": "webpack --mode development --watch ./frontend/src/index.js -o ./frontend/static/frontend/",
"build": "webpack --mode production ./frontend/src/index.js -o ./frontend/static/frontend/",
"compile:sass": "node-sass frontend/static/frontend/styles/sass/index.scss frontend/static/frontend/styles/css/index.css -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tobi4120/notion-clone.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tobi4120/notion-clone/issues"
},
"homepage": "https://github.com/tobi4120/notion-clone#readme"
}