-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.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
{
"name": "@cristianfalcone/pedal",
"version": "0.1.0",
"license": "MIT",
"author": {
"name": "Cristian Falcone",
"email": "[email protected]",
"url": "http://cristianfalcone.com"
},
"scripts": {
"clean": "rm -rf dist",
"prebundle": "yarn clean",
"bundle": "rollup -c",
"build": "NODE_ENV=production yarn bundle",
"serve": "node dist/server/server.js",
"start": "NODE_ENV=production yarn serve"
},
"dependencies": {
"@bikeshaving/crank": "^0.3.6",
"@tailwindcss/ui": "^0.7.2",
"navaid": "^1.2.0",
"node-fetch": "^2.6.1",
"polka": "^0.5.2",
"sirv": "^1.0.7",
"tailwindcss": "^1.9.6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-inject": "^4.0.2",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-sucrase": "^3.1.0",
"@types/node": "^14.14.7",
"cssnano": "^4.1.10",
"flatted": "^3.1.0",
"rollup": "^2.33.2",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-terser": "^7.0.2",
"sucrase": "^3.16.0"
}
}