forked from Faworki/project-catwalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.78 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
{
"name": "project-catwalk",
"version": "1.0.0",
"description": "Complete redesign of retail portal of a client-facing retail website.",
"main": "index.js",
"jest": {
"preset": "jest-puppeteer",
"setupFilesAfterEnv": [
"<rootDir>client/setupTests.js"
]
},
"scripts": {
"start": "node server/index.js",
"start-dev": "nodemon --inspect server/index.js",
"build": "webpack --mode production --devtool none",
"watch": "webpack -w",
"test": "jest --coverage"
},
"keywords": [],
"author": "Zac Realberg, Jimmy Ko, Colin Chauche, Raymond Hunce",
"license": "",
"dependencies": {
"@babel/runtime": "^7.12.5",
"axios": "^0.21.1",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-horizontal-scrolling-menu": "^0.7.8",
"react-modal": "^3.12.1",
"react-router-dom": "^5.2.0",
"sass": "^1.32.4"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-throw-expressions": "^7.12.1",
"@babel/plugin-syntax-throw-expressions": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.12.5",
"babel-jest": "^26.6.3",
"babel-loader": "^8.1.0",
"css-loader": "^5.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.17.0",
"eslint-plugin-react": "^7.22.0",
"jest": "^26.6.3",
"jest-puppeteer": "^4.4.0",
"mini-css-extract-plugin": "^1.3.4",
"nodemon": "^2.0.4",
"puppeteer": "^5.5.0",
"react-test-render": "^1.1.2",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"supertest": "^6.1.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}