-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
{
"name": "jasonmiller_zola",
"author": "Jason Miller, <[email protected]>",
"version": "0.0.1",
"private": true,
"description": "",
"license": "UNLICENSED",
"main": "watcher.js",
"repository": {
"type": "git",
"url": "https://github.com/imjasonmiller/jasonmiller_zola.git"
},
"scripts": {
"watch": "node watch.js",
"webpack-dev": "rm -rf ./static/js/** && webpack --node-env development",
"webpack-prod": "rm -rf ./static/js/** && webpack --node-env production",
"webpack-analyze": "webpack --profile --json > stats.json && webpack-bundle-analyzer stats.json ./static/js/",
"sw-cache": "node ./generateServiceWorkerCache.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"type": "module",
"prettier": {
"singleQuote": false,
"trailingComma": "all",
"semi": true,
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"bracketSpacing": true
},
"dependencies": {
"@imjasonmiller/scroll-io": "^1.1.2",
"core-js": "^3.10.1",
"gsap": "^3.6.1",
"ogl": "^0.0.73"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"babel-loader": "^8.2.2",
"browser-sync": "^2.26.14",
"webpack": "^5.36.2",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.6.0"
}
}