-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.27 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
{
"name": "daveberning.io",
"version": "1.0.0",
"description": "Dave Berning is a web developer and designer from Cincinnati, OH. He has been building interactive web applications and websites since 2012. He is also the author of \"Vue.js: Understanding It's Tools and Ecosystem\" and a contributing writer at Alligator.io",
"author": "Dave Berning",
"private": true,
"scripts": {
"dev": "node -r ts-node/register node_modules/nuxt/bin/nuxt dev -c nuxt.config.ts",
"build": "node -r ts-node/register node_modules/nuxt/bin/nuxt build -c nuxt.config.ts",
"generate": "node -r ts-node/register node_modules/nuxt/bin/nuxt generate -c nuxt.config.ts",
"start": "nuxt start",
"test": "jest"
},
"dependencies": {
"@daveberning/griddle": "^0.3.0",
"@vue/composition-api": "^0.3.4",
"axios": "^0.19.0",
"bowser": "^2.8.1",
"number-to-words": "^1.2.4",
"nuxt": "^2.0.0",
"sass-loader": "^8.0.2",
"ts-loader": "^6.2.2"
},
"devDependencies": {
"@nuxt/typescript-build": "^0.1.11",
"@nuxtjs/style-resources": "^1.0.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-jest": "^24.1.0",
"jest": "^24.1.0",
"node-sass": "npm:sass@^1.58.3",
"ts-node": "^8.6.2",
"typescript": "^3.8.3",
"vue-jest": "^4.0.0-0"
}
}