-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.77 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.77 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
{
"name": "scratch_project_code_snippets",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node server/server.js",
"build": "webpack",
"dev": "NODE_ENV=development concurrently \"webpack serve --open\" \"nodemon ./server/server.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Aalayah Olaes, Scott Brasko,Yueran Li, Paul Lee, Kinski Wu",
"license": "ISC",
"dependencies": {
"@uiw/codemirror-extensions-langs": "^4.19.16",
"@uiw/react-codemirror": "^4.19.16",
"bootstrap": "^5.2.3",
"codemirror": "^6.0.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"mongodb": "^5.5.0",
"mongoose": "^7.1.1",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-bootstrap": "^2.7.4",
"react-dnd": "^14.0.5",
"react-dnd-html5-backend": "^14.1.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-tag-input": "^6.8.1",
"sass": "^1.62.1"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.2",
"concurrently": "^8.0.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.40.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.1",
"nodemon": "^2.0.22",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0"
}
}