forked from gautam-in/shopping-cart-assignment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "code-exercise",
"version": "1.0.0",
"description": "This is a shopping cart coding exercise",
"main": "index.js",
"scripts": {
"start": "canned --cors=false -p 5000 ./server",
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "webpack --config webpack.config.js",
"serve": "webpack serve --config webpack.config.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"canned": "^0.3.12",
"rxjs": "^7.2.0"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"handlebars": "^4.7.7",
"handlebars-loader": "^1.7.1",
"handlebars-webpack-plugin": "^2.2.1",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"node-sass": "^6.0.1",
"path": "^0.12.7",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.43.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
}
}