-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.19 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
{
"name": "aboutjn.github.io",
"version": "1.0.0",
"description": "My personal portfolio SPA created with Svelte.js and Tailwind CSS. ",
"main": "index.js",
"scripts": {
"lint": "npx eslint src/**/**.js",
"pretty": "npx prettier-eslint --write src/**/**.js",
"bundle": "./node_modules/.bin/webpack --config webpack.config.js",
"build": "npm run lint && npm run pretty && npm run bundle",
"app:dev": "./node_modules/.bin/webpack-dev-server --config webpack.config.js --output-public-path /public/ --port 3000",
"app:prod": "./node_modules/.bin/webpack-dev-server --config webpack.config.js --output-public-path /public/ --host 0.0.0.0 --port 8080 --no-live-reload",
"start": "npm run app:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neetjn/aboutjn.github.io.git"
},
"author": "John Nolette <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/neetjn/aboutjn.github.io/issues"
},
"homepage": "https://github.com/neetjn/aboutjn.github.io#readme",
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@fortawesome/fontawesome-free": "^5.10.0",
"@fullhuman/postcss-purgecss": "^1.2.0",
"animate.css": "^3.7.2",
"animejs": "^3.0.1",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"chart.js": "^2.8.0",
"css-loader": "^3.1.0",
"cssnano": "^4.1.10",
"d3": "^5.9.7",
"file-loader": "^4.2.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"particlesjs": "^2.2.3",
"postcss-cli": "^6.1.3",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"prettier-eslint": "^9.0.0",
"prettier-eslint-cli": "^5.0.0",
"pretty-checkbox": "^3.0.3",
"resolve-url-loader": "^3.1.0",
"styles-loader": "^1.0.2",
"svelte": "^3.6.7",
"svelte-loader": "^2.13.6",
"tailwind": "^4.0.0",
"tailwindcss": "^1.0.5",
"tailwindcss-filters": "^2.0.0",
"tailwindcss-transitions": "^2.0.1",
"url-loader": "^1.1.2",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.7.1"
}
}