-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
{
"name": "@unseenco/taxi",
"description": "A modern page transition library which supports routing, preloading, and additional script reloading.",
"version": "1.7.1",
"license": "GPL-3.0-or-later",
"source": "src/taxi.js",
"main": "src/taxi.js",
"umd:main": "./dist/taxi.umd.js",
"publishConfig": {
"source": "src/taxi.js",
"main": "dist/taxi.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/craftedbygc/taxi.git"
},
"bugs": {
"url": "https://github.com/craftedbygc/taxi/issues"
},
"homepage": "https://github.com/craftedbygc/taxi#readme",
"contributors": [
{
"name": "Jake Whiteley",
"email": "[email protected]"
}
],
"dependencies": {
"@unseenco/e": "^2.3.0"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@tailwindcss/typography": "^0.5.3",
"@types/estree": "^1.0.0",
"babel-plugin-prismjs": "^2.1.0",
"browser-sync": "^2.27.7",
"browser-sync-webpack-plugin": "^2.3.0",
"cross-env": "^7.0.3",
"gsap": "^3.10.2",
"html-minifier": "^4.0.0",
"laravel-mix": "^6.0.41",
"markdown-it-anchor": "^8.6.4",
"microbundle": "^0.14.2",
"mix-tailwindcss": "^1.3.0",
"npm-run-all": "^4.1.5",
"prismjs": "^1.28.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.53.0",
"sass-loader": "^12.1.0",
"tailwindcss": "^3.1.5",
"typescript": "^4.5.5"
},
"scripts": {
"build": "microbundle",
"ts": "tsc",
"start": "npm-run-all -p dev:*",
"dev:eleventy": "eleventy --serve --quiet",
"dev:mix": "mix watch",
"docs": "npm-run-all -p docs:*",
"docs:eleventy": "cross-env ENVIRONMENT=prod eleventy",
"docs:mix": "mix --production"
}
}