-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "pear",
"version": "1.0.0",
"description": "Pear is a pairing app designed for bootcamps to assist in generating pairs of students for pair coding exercises.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.prod.js",
"build-dev": "webpack --config webpack.dev.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pear-Pairing/pear.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Pear-Pairing/pear/issues"
},
"homepage": "https://github.com/Pear-Pairing/pear#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-loader": "^8.2.2",
"webpack": "^5.16.0",
"webpack-cli": "^4.4.0",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"axios": "^0.21.1",
"lodash.debounce": "^4.0.8",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.2.1"
}
}