forked from Samosas-SDC/SDC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.14 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
{
"name": "project-atelier",
"version": "1.0.0",
"description": "Front-End Capstone project at Hack Reactor RFP2202 with Alison Lee, Chris Padovan, Edgar Carrillo, and Elbert Chan",
"main": "index.js",
"jest": {
"testEnvironment": "jsdom"
},
"scripts": {
"start": "nodemon server/index.js",
"dev:react": "webpack --config ./webpack.config.js --mode development --watch",
"dev:webpack": "webpack serve --open --config ./webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mob-Psycho-100/project-atelier.git"
},
"author": "Alison Lee, Chris Padovan, Edgar Carrillo, and Elbert Chan",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mob-Psycho-100/project-atelier/issues"
},
"homepage": "https://github.com/Mob-Psycho-100/project-atelier#readme",
"dependencies": {
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^14.0.4",
"axios": "^0.26.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"dotenv-webpack": "^7.1.0",
"express": "^4.17.3",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"moment": "^2.29.2",
"nanoid": "^3.3.2",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"styled-components": "^5.3.5",
"uniqid": "^5.4.0",
"url-loader": "^4.1.1",
"webpack-merge": "^5.8.0"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.4",
"css-loader": "^6.7.1",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"html-loader": "^3.1.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}