-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"name": "assessment-task",
"version": "1.0.0",
"description": "Front-end Assessment task with Webpack Config",
"main": "index.js",
"scripts": {
"start": "npm run build",
"build": "webpack -d && copy src\\app\\index.html dist\\index.html && webpack-dev-server --content-base src\\ --inline --hot --port 3000",
"build:prod": "webpack -p && copy src\\app\\index.html dist\\index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peersahab/front-end-assessment.git"
},
"keywords": [
"reactjs"
],
"author": "Peer Sahab",
"license": "MIT",
"dependencies": {
"antd": "^3.12.1",
"babel-polyfill": "^6.26.0",
"less": "^3.9.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.3",
"redux": "^4.0.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^2.1.0",
"less-loader": "^4.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"bugs": {
"url": "https://github.com/peersahab/front-end-assessment/issues"
},
"homepage": "https://github.com/peersahab/front-end-assessment#readme"
}