-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
138 lines (138 loc) · 4.02 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
{
"name": "protoschool",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build:docs": "npm-run-all build:docs:design build:docs:develop",
"build:docs:design": "markdown-toc -i DESIGNING_TUTORIALS.md",
"build:docs:develop": "markdown-toc -i DEVELOPING_TUTORIALS.md",
"build:fleek": "npm ci && npm run sitemap && npm run scripts:build:data -- --dry-run=false && npm run test:jest && npm run build && npm run cy:run:ci",
"cy:open": "cypress open",
"cy:run": "cypress run --browser chrome",
"cy:run:all-browsers": "cypress run --browser chrome && cypress run --browser firefox",
"cy:run:ci": "start-server-and-test cy:serve http://localhost:3000 cy:run:all-browsers",
"cy:serve": "serve -l 3000 dist",
"install-protowizard": "npm i ./ -g",
"scripts:build:data": "node scripts/commands/build-data",
"scripts:googleapis-generate-token": "node scripts/commands/googleapis-generate-token",
"scripts:wizard": "node scripts/commands/wizard/index.js",
"sitemap": "rm -f public/sitemap.xml && vue-cli-service sitemap",
"start": "npm run serve",
"test": "start-server-and-test serve http://localhost:3000 cy:run",
"test:jest": "jest --maxWorkers=1 --verbose"
},
"dependencies": {
"async": "^2.6.1",
"cids": "^1.1.5",
"err-code": "^3.0.1",
"googleapis": "^71.0.0",
"highlight.js": "^9.12.0",
"inquirer": "^7.1.0",
"ipfs": "^0.50.2",
"ipfs-css": "^0.6.0",
"it-all": "^1.0.5",
"it-to-buffer": "^1.0.1",
"lodash": "^4.17.19",
"mailchimp-api-v3": "^1.13.1",
"markdown-toc": "^1.2.0",
"meta-marked": "^0.5.0",
"moment": "^2.24.0",
"monaco-editor": "^0.20.0",
"monaco-editor-vue": "^1.0.10",
"monaco-editor-webpack-plugin": "^1.9.0",
"new-github-issue-url": "^0.2.1",
"p-timeout": "^5.0.0",
"portal-vue": "^2.1.7",
"prerender-spa-plugin": "^3.4.0",
"querystringify": "^2.2.0",
"raw-loader": "^0.5.1",
"shallow-equal": "^1.0.0",
"tachyons": "^4.11.1",
"v-tooltip": "^2.1.3",
"vue": "^2.5.16",
"vue-highlight.js": "^3.1.0",
"vue-meta": "^2.4.0",
"vue-router": "^3.5.2",
"vue-select": "^3.11.2",
"vuelidate": "^0.7.5"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^4.1.1",
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"babel-eslint": "^10.1.0",
"cli-table": "^0.3.6",
"cypress": "^5.5.0",
"cypress-file-upload": "^4.1.1",
"del": "^6.0.0",
"dotenv": "^8.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^6.1.2",
"husky": "^4.2.5",
"jest": "^26.6.3",
"netlify-plugin-cypress": "^1.4.1",
"npm-run-all": "^4.1.5",
"npmlog": "^4.1.2",
"regenerator-runtime": "^0.13.7",
"serve": "^11.3.2",
"start-server-and-test": "^1.12.5",
"vue-cli-plugin-sitemap": "~2.3.0",
"vue-cli-plugin-svg": "^0.1.3",
"vue-template-compiler": "^2.5.16"
},
"babel": {
"presets": [
"@vue/app"
],
"ignore": [
"src/routes.js",
"src/api/**/*.js"
]
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"standard"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"bin": {
"protowizard": "./scripts/commands/wizard/index.js"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "npm run build:docs && git add DEVELOPING_TUTORIALS.md DESIGNING_TUTORIALS.md"
}
},
"license": "Apache-2.0 AND MIT"
}