-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.6 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
{
"name": "chat-demo-vue",
"private": true,
"dependencies": {
"@babel/preset-react": "^7.10.4",
"@rails/actioncable": "^6.0.0",
"@rails/ujs": "^6.0.0",
"@rails/webpacker": "4.2.2",
"@websanova/vue-auth": "^2.21.3-beta",
"axios": "^0.18.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bootstrap": "^4.0.0",
"jest": "^22.4.3",
"moment": "^2.22.0",
"prop-types": "^15.6.1",
"react": "^16.13.1",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"react-router-dom": "^5.2.0",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"redux-token-auth": "https://github.com/el-rotny/redux-token-auth",
"upath": "^1.1.0",
"vue": "^2.6.11",
"vue-axios": "^2.1.1",
"vue-jest": "^2.5.0",
"vue-loader": "^15.9.3",
"vue-moment": "^3.2.0",
"vue-router": "^3.0.1",
"vue-spinner": "^1.0.3",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.14",
"babel-jest": "^22.4.3",
"eslint": "^7.4.0",
"eslint-plugin-vue": "^6.2.2",
"jest": "^22.4.3",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"test": "jest"
},
"jest": {
"roots": [
"spec/javascript"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
}
}
}