-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
78 lines (78 loc) · 3.25 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "profileio",
"version": "0.9.0",
"private": true,
"homepage": "https://lakshmananumolu.com",
"dependencies": {
"@loadable/component": "^5.14.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/jquery": "3.5.1",
"@types/loadable__component": "^5.13.1",
"@types/lodash": "^4.14.161",
"@types/node": "^12.0.0",
"@types/react": "^16.9.50",
"@types/react-dom": "^16.9.0",
"@types/react-highlight.js": "^1.0.0",
"@types/react-image-gallery": "^1.0.0",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.6",
"@types/react-scroll": "^1.8.2",
"axios": "^0.20.0",
"bootstrap": "^4.5.2",
"concurrently": "^5.3.0",
"jquery": "1.9.1 - 3",
"js-yaml": "^3.14.0",
"lodash": "^4.17.20",
"nodemon": "^2.0.4",
"popper.js": "^1.16.1",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-ga": "^3.2.0",
"react-highlight.js": "^1.0.7",
"react-icons": "^3.11.0",
"react-image-gallery": "^1.0.8",
"react-markdown": "^4.3.1",
"react-player": "^2.6.2",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-scroll": "^1.8.1",
"react-spring": "^8.0.27",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"showdown": "^1.9.1",
"typescript": "~4.0.3"
},
"scripts": {
"profile": "nodemon --watch _profile -e js,yml,md ./src/preprocessors/profile.js ./_profile/profile_web.yml ./src/preprocessors/profile_web.json",
"copy-images": "node ./scripts/createDirectory ./public/images && node ./scripts/createDirectory ./public/videos && node ./scripts/createDirectory ./public/files && node ./src/preprocessors/copyDir.js _profile/images public/images && node ./src/preprocessors/copyDir.js _profile/videos public/videos && node ./src/preprocessors/copyDir.js _profile/files public/files",
"start": "concurrently npm:profile npm:copy-images \"react-scripts start\"",
"build": "node ./src/preprocessors/profile.js ./_profile/profile_web.yml ./src/preprocessors/profile_web.json && npm run build:resume-json && npm run build:resume-tex && react-scripts build && node ./scripts/createDirectory ./build/images && node ./scripts/createDirectory ./build/videos && node ./scripts/createDirectory ./build/files && node ./src/preprocessors/copyDir.js _profile/images build/images && node ./src/preprocessors/copyDir.js _profile/videos build/videos && node ./src/preprocessors/copyDir.js _profile/files build/files && node ./src/preprocessors/copyDir.js resume/resume build/files/resume",
"build:resume-json": "node ./src/preprocessors/profile.js ./_profile/profile_resume.yml ./resume/profile_resume.json",
"build:resume-tex": "cd resume && go run main.go",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/webpack-env": "^1.15.3"
}
}