-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·82 lines (81 loc) · 1.89 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
78
79
80
81
82
{
"name": "day-routine",
"version": "1.1.0",
"productName": "Day Routine",
"description": "",
"main": "main.js",
"scripts": {
"test": "jest --runInBand",
"start": "electron-forge start",
"watch": "webpack --watch"
},
"repository": "https://github.com/AlexeyArno/Day-Routine",
"author": "AlexeyArno",
"license": "MIT",
"devDependencies": {
"css-loader": "^0.28.7",
"electron": "^4.1.4",
"electron-forge": "^5.2.4",
"electron-prebuilt-compile": "4.0.0",
"jest": "^23.6.0",
"rimraf": "^2.6.2",
"ts-loader": "^3.2.0",
"typescript": "^2.6.2",
"webpack": "^3.10.0"
},
"dependencies": {
"@types/jest": "^23.3.9",
"@types/node": "^11.13.2",
"dotenv": "^6.1.0",
"dotenv-webpack": "^1.5.7",
"electron-builder": "^20.39.0",
"electron-compile": "^6.4.4",
"electron-reload": "^1.2.2",
"electron-squirrel-startup": "^1.0.0",
"node-notifier": "^5.2.1",
"node-sass": "^4.9.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.19.1",
"svg-inline-loader": "^0.8.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"vue": "^2.5.17",
"vue-class-component": "^6.2.0",
"vue-loader": "^15.4.2",
"vue-property-decorator": "^7.1.1",
"vue-svg-loader": "^0.10.0",
"vue-template-compiler": "^2.5.17",
"vue-template-loader": "^1.0.0",
"vuebar": "^0.0.20",
"vuex": "^3.0.1",
"vuex-class": "^0.3.1"
},
"jest": {
"verbose": false,
"modulePaths":[
"<rootDir>"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json",
"diagnostics": false
}
},
"testMatch": [
"<rootDir>/**/*.test.tsx",
"<rootDir>/**/*.test.ts"
]
}
}