forked from kabelbinder/smart-cube-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.35 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
72
73
74
75
76
77
{
"name": "smart-cube-timer",
"version": "1.0.0",
"engines": {
"node": ">=10.3.0"
},
"description": "Record your times with detailed statistics, thanks to the power of “smart cubes!”",
"author": "Koki Takahashi <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"@nuxtjs/google-analytics": "^2.0.2",
"@nuxtjs/pwa": "latest",
"cubejs": "^1.3.1",
"dexie": "^2.0.4",
"file-saver": "^2.0.0-rc.4",
"giiker": "github:kabelbinder/giiker",
"lodash": "^4.17.11",
"nanoid": "^2.0.0",
"nosleep.js": "^0.7.0",
"nuxt": "latest",
"postcss-import-url": "^3.0.4",
"precss": "^3.1.2",
"scrambo": "github:nickcolley/scrambo",
"sylvester": "github:hakatashi/node-sylvester#0.0.21-hakatashi-0",
"vuetify": "^1.3.5"
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "cross-env NODE_ENV=production nuxt generate",
"generate:old": "cross-env NODE_ENV=production DEPLOY_ENV=GH_PAGES nuxt generate",
"deploy": "npm run generate:old && cd dist && git init && git remote add origin https://github.com/kabelbinder/smart-cube-timer.git && git fetch && git symbolic-ref HEAD refs/remotes/origin/gh-pages && git add . && git commit -m \"Update build\" && git push -u origin HEAD:gh-pages && cd ..",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"test": "jest --verbose --coverage"
},
"devDependencies": {
"@hakatashi/eslint-config": "^1.8.3",
"@vue/test-utils": "^1.0.0-beta.25",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-vue-app": "^2.0.0",
"cross-env": "^5.2.0",
"eslint": "^5.8.0",
"eslint-loader": "^2.1.1",
"jest": "^23.6.0",
"vue-jest": "^3.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"globals": {
"vue-jest": {
"babelRcFile": ".babelrc"
}
},
"moduleNameMapper": {
"^~(.*)$": "<rootDir>$1"
},
"collectCoverageFrom": [
"**/*.{js,vue}",
"!**/node_modules/**",
"!**/coverage/**",
"!**/dist/**"
]
}
}