forked from fabkravmaga/developer.gov.sg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.65 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
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
{
"name": "developer.gov.sg",
"version": "0.0.0",
"description": "developer.gov.sg",
"repository": {
"type": "git",
"url": "https://github.com/govtechsg/developer.gov.sg.git"
},
"license": "MIT",
"scripts": {
"build": "npm run test:site && webpack --mode=production && JEKYLL_ENV=production bundle exec jekyll build",
"build:dev": "npm run test:site && webpack && bundle exec jekyll build",
"dev:concurrent": "concurrently \"npm run dev:static\" \"npm run dev:jekyll\"",
"dev:jekyll": "JEKYLL_ENV=development bundle exec jekyll serve --livereload",
"dev:netlify": "NODE_ENV=development netlify dev",
"dev:static": "webpack --watch",
"test:jekyll": "JEKYLL_ENV=testing bundle exec jekyll serve --livereload",
"test:concurrent": "concurrently \"npm run dev:static\" \"npm run test:jekyll\"",
"test:site": "NODE_ENV=production mocha --require @babel/register --recursive ./apps/src/tests/**/*.js",
"test:server": "web-dev-server --open --root-dir ./_site/ --port 8000"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"@tiptap/extension-image": "^2.0.0-beta.27",
"@tiptap/extension-link": "^2.0.0-beta.38",
"@tiptap/extension-table": "^2.0.0-beta.49",
"@tiptap/extension-table-cell": "^2.0.0-beta.20",
"@tiptap/extension-table-header": "^2.0.0-beta.22",
"@tiptap/extension-table-row": "^2.0.0-beta.19",
"@tiptap/extension-task-item": "^2.0.0-beta.32",
"@tiptap/extension-task-list": "^2.0.0-beta.26",
"@tiptap/extension-underline": "^2.0.0-beta.23",
"@tiptap/starter-kit": "^2.0.0-beta.185",
"@tiptap/vue-3": "^2.0.0-beta.205",
"@web/dev-server": "^0.1.31",
"axios": "^0.27.2",
"babel-loader": "^9.1.0",
"concurrently": "^7.2.0",
"css-loader": "^6.7.1",
"cypress": "^9.7.0",
"date-fns": "^2.21.1",
"dotenv-webpack": "^7.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^9.0.1",
"lodash": "^4.17.20",
"lunr": "^2.3.9",
"mini-css-extract-plugin": "^2.6.0",
"mocha": "^10.0.0",
"noty": "^3.2.0-beta",
"prettier": "^2.6.2",
"sanitize-html": "^2.7.0",
"sass": "^1.30.0",
"sass-loader": "^13.0.0",
"sgds-govtech": "^1.3.20",
"style-loader": "^3.3.1",
"v-tooltip": "^2.0.2",
"vue": "^3.2.45",
"vue-loader": "^17.0.1",
"vue-loading-overlay": "^6.0.2",
"vue-moment": "^4.1.0",
"vuex": "^4.1.0",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"js-yaml": "^4.1.0",
"swiper": "^8.1.6",
"tippy.js": "^6.3.1"
}
}