forked from sutd-robotics/sutdsoar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
166 lines (166 loc) · 4.41 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "sutdsoar",
"version": "1.0.0",
"description": "SUTD Organisation of Autonomous Robotics Website",
"repository": {
"type": "",
"url": ""
},
"keywords": [
"vue.js",
"vuex",
"vuex-persist",
"seo",
"server-side-rendering",
"isomorphic",
"progressive-web-app"
],
"author": "James Raphael Tiovalen <[email protected]>",
"license": "MIT",
"homepage": "",
"bugs": {
"url": "https://github.com/sutd-robotics/sutdsoar/issues"
},
"scripts": {
"dev": "vuesion dev -o",
"generate": "vuesion generate",
"add": "vuesion add",
"extract-i18n-messages": "vuesion extract-i18n-messages",
"test": "vuesion test --coverage",
"e2e": "vuesion e2e",
"lint": "vuesion lint",
"clean": "vuesion clean",
"storybook:dev": "vuesion storybook --dev",
"storybook:build": "vuesion storybook",
"update": "vuesion update",
"prettier": "vuesion prettier",
"release:major": "vuesion release --major",
"release:minor": "vuesion release --minor",
"release:patch": "vuesion release --patch",
"build": "vuesion build",
"build:analyze": "vuesion build --analyze",
"build:spa": "vuesion build --spa",
"start": "node ./dist/server/server.js",
"e2e:ci": "npx start-server-and-test dev http://localhost:3000 e2e",
"ci": "vuesion parallel \"npm run lint\" \"npm run test -- --runInBand\" \"npm run e2e:ci\" && npm run build:spa",
"postci": "vuesion parallel \"npm run build\" \"npm run storybook:build\""
},
"dependencies": {
"@vuesion/addon-vuex-persist": "^3.1.2",
"@vuesion/models": "^3.1.2",
"@vuesion/utils": "^3.1.2",
"@vuesion/webpack": "^3.1.2",
"accept-language": "3.0.18",
"animejs": "3.1.0",
"axios": "0.21.4",
"body-parser": "1.19.0",
"compression": "1.7.4",
"config": "3.2.3",
"cookie-parser": "1.4.4",
"deepmerge": "4.1.1",
"express": "4.17.1",
"helmet": "3.21.1",
"lodash": "4.17.21",
"lru-cache": "5.1.1",
"marked": "4.0.10",
"serve-favicon": "2.5.0",
"vee-validate": "2.0.9",
"vue": "2.6.12",
"vue-i18n": "8.14.1",
"vue-meta": "2.3.1",
"vue-router": "3.5.1",
"vue-server-renderer": "2.6.12",
"vuex": "3.6.2",
"vuex-router-sync": "^5.0.0",
"winston": "3.2.1"
},
"devDependencies": {
"@commitlint/cli": "8.2.0",
"@commitlint/config-conventional": "8.2.0",
"@types/animejs": "2.0.2",
"@types/body-parser": "1.17.1",
"@types/compression": "1.0.1",
"@types/cookie-parser": "1.4.2",
"@types/express": "4.17.1",
"@types/helmet": "0.0.44",
"@types/jest": "24.0.18",
"@types/lodash": "4.14.144",
"@types/marked": "0.6.5",
"@types/node": "10.12.24",
"@types/serve-favicon": "2.2.31",
"@vue/test-utils": "1.0.0-beta.28",
"@vuesion/service": "^3.1.2",
"axios-mock-adapter": "1.17.0",
"husky": "3.0.8",
"identity-obj-proxy": "3.0.0",
"node-sass": "4.13.1",
"ts-jest": "24.1.0",
"typescript": "3.6.4",
"vue-template-compiler": "2.6.12"
},
"engines": {
"node": "10.14.1",
"npm": "6.4.1"
},
"husky": {
"hooks": {
"pre-commit": "vuesion parallel \"vuesion prettier --staged\" \"npm run lint\" \"npm run test\""
}
},
"jest": {
"globals": {
"window": true,
"ts-jest": {
"tsConfig": "tsconfig.test.json"
}
},
"rootDir": ".",
"roots": [
"<rootDir>/src"
],
"setupFiles": [
"<rootDir>/jestsetup.ts"
],
"moduleFileExtensions": [
"js",
"ts"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"^@shared/(.*)$": "<rootDir>/src/app/shared/$1",
"^@components/(.*)$": "<rootDir>/src/app/shared/components/$1",
"^@static/(.*)$": "<rootDir>/src/static/$1"
},
"transform": {
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"coverageThreshold": {
"global": {
"branches": 98,
"functions": 99,
"lines": 99,
"statements": 99
}
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/jestsetup.ts"
],
"coverageDirectory": "./coverage",
"coverageReporters": [
"html",
"text",
"lcov",
"json"
],
"preset": "ts-jest",
"testMatch": null
},
"browserslist": [
"> 2%",
"last 2 versions",
"IE >= 11"
]
}