-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.82 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
{
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt",
"build-production": "cross-env NODE_ENV=production nuxt build",
"build-preview": "cross-env NODE_ENV=preview nuxt build",
"start-production": "cross-env NODE_ENV=production node server.js",
"start-preview": "cross-env NODE_ENV=preview node server.js",
"setup": "npm install && npm-install-peers",
"build": "nuxt build",
"build-docker-dev": "docker build -t dev-site --target build-dev .",
"run-docker-dev": "docker run -p 3000:80 dev-site",
"test": "mocha --recursive --timeout 20000 uitest"
},
"dependencies": {
"@nuxtjs/axios": "^4.5.2",
"@types/downloadjs": "^1.4.1",
"ajv": "^6.5.4",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"clipboard": "^2.0.1",
"dont-sniff-mimetype": "^1.1.0",
"downloadjs": "^1.4.7",
"highlight.js": "^9.15.6",
"lodash.merge": "^4.6.2",
"manup": "^1.0.1",
"marked": "0.7.0",
"monaco-editor": "^0.17.0",
"monaco-editor-webpack-plugin": "^1.7.0",
"normalize-scss": "^7.0.1",
"nuxt": "^1.4.5",
"nuxt-class-component": "^1.2.1",
"prismjs": "^1.21.0",
"sharebutton": "0.6.3",
"ttf2woff": "^2.0.1",
"vue": "^2.5.17",
"vue-class-component": "^6.2.0",
"vue-i18n": "^8.1.0",
"vue-monaco": "^0.3.2",
"vue-monaco-editor": "0.0.19",
"vue-property-decorator": "^7.2.0",
"vue-server-renderer": "^2.5.17",
"vue-template-compiler": "^2.5.17",
"vuex-class": "^0.3.1",
"vuex-persist": "^2.0.1"
},
"devDependencies": {
"@types/chai": "^4.1.0",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.7",
"@types/sinon": "^4.1.2",
"@types/sinon-chai": "^3.2.0",
"@types/sinon-stub-promise": "^2.1.3",
"@types/wicg-file-system-access": "^2020.9.1",
"axios-mock-adapter": "^1.10.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"concurrently": "^4.0.1",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.2.0",
"mocha": "^5.2.0",
"nightwatch": "^0.9.21",
"node-sass": "^4.14.1",
"npm-install-peers": "^1.2.1",
"nyc": "^13.3.0",
"opener": "^1.5.1",
"puppeteer": "^2.0.0",
"sass-loader": "^7.1.0",
"selenium-standalone": "^6.15.3",
"sinon": "^6.3.5",
"sinon-chai": "^3.2.0",
"sinon-stub-promise": "^4.0.0",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^1.0.0",
"stylelint-processor-html": "^1.0.0",
"stylelint-scss": "^3.3.1",
"stylelint-webpack-plugin": "^0.10.5",
"ts-loader": "^5.2.1",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.6.0",
"tslint": "^5.11.0",
"typescript": "2.9.2",
"wait-on": "^3.1.0"
},
"peerDependencies": {
"ajv": "^6.5.4",
"stylelint": "^9.0.0"
}
}