-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "a-repo-story",
"version": "1.0.0",
"description": "Nuxt + Electron",
"author": "Afif Sohaili <[email protected]>",
"private": true,
"main": "main.js",
"build": {
"appId": "com.afifsohaili.arepostory",
"directories": {
"buildResources": "static"
}
},
"scripts": {
"build": "nuxt build && electron-builder",
"dev": "cross-env NODE_ENV=DEV electron .",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "cross-env NODE_ENV=test jest"
},
"dependencies": {
"entities": "^1.1.2",
"fuzzysort": "^1.1.4",
"nuxt": "^2.1.0",
"simple-git": "^1.104.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"chance": "^1.0.16",
"cross-env": "^5.1.4",
"electron": "^3.0.4",
"electron-builder": "^20.8.1",
"electron-devtools-installer": "^2.2.3",
"eslint": "^5.6.1",
"eslint-config-xo-space": "^0.20.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^4.0.0",
"jest": "^23.6.0",
"regenerator-runtime": "^0.12.1"
},
"jest": {
"moduleNameMapper": {
"^~(.*)$": "<rootDir>/$1"
}
}
}