forked from rpp32-fec-oyster/project-atelier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.01 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": "project-atelier",
"version": "1.0.0",
"description": "Front End Capstone: Dominic, Meredith, Zac, Jeff",
"main": "server/index.js",
"scripts": {
"test": "jest --coverage",
"start": "nodemon server/index.js",
"build": "webpack --watch",
"dev": "npm run start & npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpp32-fec-oyster/project-atelier.git"
},
"author": "DominicCarullo, merwhite11, jefffock",
"license": "ISC",
"bugs": {
"url": "https://github.com/rpp32-fec-oyster/project-atelier/issues"
},
"homepage": "https://github.com/rpp32-fec-oyster/project-atelier#readme",
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/fileMock.js"
}
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"axios": "^0.24.0",
"babel-jest": "^27.4.5",
"babel-loader": "^8.2.3",
"bootstrap": "^5.1.3",
"compression-webpack-plugin": "^9.2.0",
"enzyme": "^3.11.0",
"eslint": "^8.4.1",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"jest": "^27.4.5",
"jest-dom": "^4.0.0",
"jquery": "^3.6.0",
"nodemon": "^2.0.15",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.1.1",
"underscore": "^1.13.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"compression": "^1.7.4",
"dotenv": "^12.0.3",
"react-icons": "^4.3.1",
"react-modal": "^3.14.4"
}
}