-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.94 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
{
"name": "@platform-coop-toolkit/coop-tool-library",
"version": "1.0.0",
"description": "Practical tools for co-ops.",
"scripts": {
"dev": "sapper dev",
"build": "sapper build --legacy",
"export": "sapper export --legacy",
"start": "node __sapper__/build",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "run-p --race dev cy:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/platform-coop-toolkit/coop-tool-library.git"
},
"keywords": [
"sapper",
"svelte-components",
"tool-library"
],
"author": "OCAD University",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/platform-coop-toolkit/coop-tool-library/issues"
},
"homepage": "https://github.com/platform-coop-toolkit/coop-tool-library#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"engines": {
"node": ">=12.x"
},
"dependencies": {
"compression": "^1.7.1",
"node-fetch": "^2.6.1",
"polka": "next",
"sirv": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.0.1",
"@platform-coop-toolkit/pinecone": "^1.0.0-beta.3",
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-replace": "^2.2.0",
"autoprefixer": "^9.7.6",
"cypress": "^4.11.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.0.0",
"rollup-plugin-babel": "^4.0.2",
"rollup-plugin-svelte": "^5.0.1",
"rollup-plugin-terser": "^5.3.0",
"sapper": "^0.27.0",
"slugify": "^1.4.0",
"svelte": "^3.0.0",
"svelte-preprocess": "^3.7.4"
}
}