-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 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
68
69
70
71
{
"name": "ffffranklin.github.io",
"version": "1.0.0",
"description": "Flagship blog and project website",
"main": "index.js",
"private": true,
"watch": {
"check": "{_es6,_test}/*.js"
},
"scripts": {
"next:dev": "next dev",
"next:build": "next build",
"next:start": "next start",
"next:lint": "next lint",
"jekyll:build": "jekyll build . --trace --safe",
"jekyll:serve": "jekyll serve -w --trace --drafts --config _config.yml,_config.dev.yml .",
"pack:build": "NODE_ENV=production ./node_modules/.bin/webpack",
"pack:build-dev": "./node_modules/.bin/webpack",
"pack:server": "./node_modules/.bin/webpack-dev-server --port=9876 --devtool=eval",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"serve": "npm run pack:server & npm run jekyll:serve",
"build": "npm run test && npm run jekyll:build && npm run pack:build",
"check": "npm run lint && npm run test",
"watch": "npm-watch",
"watch:dev": "npm run watch check",
"test": "node node_modules/babel-tape-runner/bin/babel-tape-runner _test/**/*.js | faucet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ffffranklin/ffffranklin.github.io.git"
},
"keywords": [
"stealth"
],
"author": "Franklin Clark",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/ffffranklin/ffffranklin.github.io/issues"
},
"homepage": "https://github.com/ffffranklin/ffffranklin.github.io#readme",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@eslint/js": "^9.5.0",
"@types/react": "18.3.3",
"babel-loader": "^9.1.0",
"babel-tape-runner": "^3.0.0",
"eslint": "^8.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "^14.2.4",
"fancy-log": "^2.0.0",
"faucet": "0.0.4",
"npm-watch": "^0.13.0",
"plugin-error": "^2.0.0",
"rewire": "^7.0.0",
"sass": "^1.77.6",
"sinon": "^18.0.0",
"tape": "^5.8.1",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"jquery": "^3.6.1",
"lodash": "^4.7.0",
"next": "^14.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}