-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 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
{
"name": "digiopsdotme",
"version": "2.9.1",
"description": "Personal Website/Blog.",
"main": "/assets/react/index.js",
"scripts": {
"test": "jest",
"dev": "react-scripts start",
"build": "react-scripts build; python manage.py collectstatic;",
"deploy": "clear; echo 'Make sure you are in Master and the working tree is ready to be commited.'; echo 'This command will ADD/COMMIT/PUSH and DEPLOY'; echo 'Press Ctrl+C to cancel and Enter to go ahead'; read; source ../bin/activate; mkdir public; react-scripts build; rm -rf public; ./manage.py collectstatic; read -p 'Enter commit message' cmtmsg; git add .; git commit -m \"$cmtmsg\"; git push origin master; eb deploy;",
"precommit": "lint-staged",
"format": "prettier --config prettier.config.js --write '**/*.{js,jsx,css}'",
"lint": "eslint --config .eslintrc.json --ext js,jsx .",
"lint-fix": "eslint --config .eslintrc.json --ext js,jsx --fix ."
},
"repository": {
"type": "git",
"url": "https://github.com/digi0ps/digiopsdotme-2.0.git"
},
"keywords": [
"digiops",
"digi0ps",
"sriram",
"digiopsdotme",
"blog",
"django",
"react",
"webpack"
],
"author": "digi0ps",
"license": "ISC",
"bugs": {
"url": "https://github.com/digi0ps/digiopsdotme-2.0/issues"
},
"homepage": "http://digi0ps.com",
"dependencies": {
"acorn": "^6.0.0",
"axios": "^0.18.0",
"brain.js": "^1.1.2",
"gsap": "^2.0.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-helmet": "^5.1.3",
"react-motion": "^0.5.0",
"react-router-dom": "^4.1.1",
"react-timeago": "^4.1.9",
"react-transition-group": "^1.1.3",
"react-typing-animation": "^1.0.10"
},
"devDependencies": {
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"lint-staged": "^8.1.0",
"prettier": "^1.11.1",
"react-scripts": "^2.1.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}