-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 2.17 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
67
68
69
70
71
72
{
"name": "curio",
"version": "1.0.0",
"description": "Virtual Art Gallery",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=production node server/server.js",
"build": "cross-env NODE_ENV=production webpack",
"dev": "cross-env NODE_ENV=development webpack serve & nodemon server/server.js",
"client-server": "cross-env NODE_ENV=development concurrently \"nodemon server/server.js\" \"npm run start\"",
"cypress": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teamcurio/Curio.git"
},
"author": "Anika, Damon, Trevor, Steve, and Chandni",
"license": "MIT",
"bugs": {
"url": "https://github.com/teamcurio/Curio/issues"
},
"homepage": "https://github.com/teamcurio/Curio#readme",
"dependencies": {
"@chakra-ui/icons": "^1.0.12",
"@chakra-ui/react": "^1.6.0",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"apollo-boost": "^0.4.9",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"concurrently": "^6.0.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"cypress": "^7.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"framer-motion": "^4.1.10",
"graphql": "^15.5.0",
"install": "^0.13.0",
"jsonwebtoken": "^8.5.1",
"npm": "^7.11.1",
"pg": "^8.6.0",
"postgresql": "0.0.1",
"react": "^17.0.2",
"react-apollo": "^3.1.5",
"react-dom": "^17.0.2",
"react-hook-form": "^7.3.5",
"react-router-dom": "^5.2.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@webpack-cli/serve": "^1.3.1",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.4",
"eslint": "^7.25.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.5.0",
"nodemon": "^2.0.7",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.36.0",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^3.11.2",
"webpack-graphql-loader": "^1.0.2"
}
}