forked from rachitGulati/MS_Loves_OSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "Microsoft-Love-OSS",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"axios": "^0.18.0",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"lodash": "^4.17.11",
"parcel-bundler": "^1.10.2",
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,css}": ["prettier --write", "npm run build", "git add", "git add docs"]
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"prettier": "^1.14.3",
"sass": "^1.14.1",
"style-loader": "^0.23.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"scripts": {
"start": "webpack-dev-server --mode development --open",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rachitGulati/Microsoft_Love_OS.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rachitGulati/Microsoft_Love_OS/issues"
},
"homepage": "https://github.com/rachitGulati/Microsoft_Love_OS#readme"
}