-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.18 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
{
"name": "315portfolio",
"version": "0.0.1",
"description": "CSCE 315 Project 1 - Personal Website",
"main": "index.js",
"repository": "https://github.tamu.edu/VigneshJoglekar/315-Project1",
"author": "Vignesh Joglekar <[email protected]>",
"license": "MIT",
"scripts": {
"build:styles": "npx tailwind build src/css/base.css -o src/css/built.css",
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
"build": "webpack --config ./webpack.config.js --mode production",
"build:people": "yarn build && node scripts/prepareForPeople.js",
"lint": "eslint \"**/*.{js,ts,tsx,jsx}\"",
"prettier": "prettier \"**/*.{js,ts,css,tsx,json,jsx}\""
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/preset-typescript": "^7.7.2",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"autoprefixer": "^9.6.5",
"babel-loader": "^8.0.6",
"babel-plugin-wildcard": "^6.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^4.1.0",
"file-loader": "^6.0.0",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss": "^7.0.18",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.19.1",
"purgecss-webpack-plugin": "^1.6.0",
"react-animated-burgers": "^1.2.8",
"react-router-dom": "^5.2.0",
"styled-components": "^5.2.0",
"tailwindcss": "^1.1.2",
"tailwindcss-transitions": "^2.2.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"typings": "^2.1.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}