-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"heroku-postbuild": "npm run production"
},
"dependencies": {
"amplitudejs": "^5.3.2",
"core-js": "^3.27.2"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@vue/test-utils": "^1.3.4",
"@vue/vue2-jest": "^29.2.2",
"axios": "^1.2.6",
"babel-jest": "^29.4.1",
"bootstrap": "^5.2",
"cross-env": "^7.0.3",
"eslint": "^8.33.0",
"eslint-config-standard": "^17.0",
"eslint-plugin-import": "^2.27",
"eslint-plugin-jest": "^27.2",
"eslint-plugin-node": "^11.1",
"eslint-plugin-promise": "^6.1",
"eslint-plugin-vue": "^9.9",
"jest": "^29.4.1",
"jsdom": "^22.1.0",
"jsdom-global": "^3.0.2",
"laravel-mix": "^6.0",
"lodash": "^4.17.21",
"popper.js": "^1.16.1",
"postcss": "^8.4",
"resolve-url-loader": "^5.0",
"sass": "^1.58",
"sass-loader": "^13.2",
"typescript": "^4.9",
"vue": "^2.7.14",
"vue-loader": "^15",
"vue-template-compiler": "^2.7.14"
}
}