forked from NoriginMedia/candidate-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 KB
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
{
"name": "form-submission",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start:mock-api": "./node_modules/.bin/osprey-mock-service -f ./node_modules/nm-mock-api/demo.raml -p 1337 --cors",
"start": "node ./node_modules/nm-mock-api/scripts/updateEpg.js && npm run start:mock-api",
"pretty": "npx prettier --write .",
"pretty-quick": "pretty-quick",
"lint": "eslint src"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.1.3",
"moment": "^2.29.4",
"nm-mock-api": "git+https://github.com/NoriginMedia/mock-api.git#cloudberry",
"oh-vue-icons": "^1.0.0-rc3",
"vue": "^3.2.37",
"vue-router": "^4.1.5",
"vuex": "^4.1.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.1.0",
"autoprefixer": "^10.4.12",
"eslint": "^8.26.0",
"eslint-plugin-vue": "^9.6.0",
"husky": "^3.1.0",
"postcss": "^8.4.18",
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"tailwindcss": "^3.1.8",
"vite": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}