-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) ยท 2.64 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
{
"name": "bangarang",
"version": "0.0.1",
"description": "allows people to manage claims",
"author": "Benjamin Bohec",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bbohec/bangarang"
},
"scripts": {
"watch:css": "postcss src/assets/global.pcss -o static/global.css -w",
"watch:dev": "sapper dev",
"dev": "run-p watch:*",
"build": "run-s build:css build:sapper",
"build:css": "cross-env NODE_ENV=production postcss src/assets/global.pcss -o static/global.css",
"build:sapper": "sapper build",
"build:export": "sapper export",
"test:acceptance": "mocha src/tests/acceptance/**/*.spec.ts",
"test:integration": "mocha src/tests/integration/**/*.spec.ts",
"test:all": "mocha src/tests/**/*.spec.ts",
"export": "run-s build:css build:export",
"start": "node __sapper__/build",
"serve": "serve ___sapper__/export"
},
"dependencies": {
"@google-cloud/datastore": "^6.3.1",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"compression": "^1.7.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"sirv": "^1.0.11"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.13.7",
"@babel/preset-env": "^7.13.5",
"@babel/runtime": "^7.13.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-replace": "^2.4.1",
"@rollup/plugin-typescript": "^6.0.0",
"@rollup/plugin-url": "^5.0.0",
"@tsconfig/svelte": "^1.0.10",
"@types/chai": "^4.2.15",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.10",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"@types/uuid": "^8.3.0",
"autoprefixer": "^10.0.2",
"chai": "^4.3.0",
"cross-env": "^7.0.3",
"cssnano": "^4.1.10",
"mocha": "^8.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.6",
"postcss-cli": "^8.3.1",
"postcss-import": "^14.0.0",
"postcss-load-config": "^3.0.1",
"postcss-preset-env": "^6.7.0",
"rollup": "^2.39.1",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"sapper": "^0.28.10",
"svelte": "^3.34.0",
"svelte-check": "^1.1.36",
"svelte-preprocess": "^4.6.9",
"tailwindcss": "^2.0.3",
"ts-node": "^9.1.1",
"tslib": "^2.0.1",
"typescript": "^4.2.2",
"uuid": "^8.3.2",
"vercel-sapper": "^0.44.0"
},
"mocha": {
"reporter": "spec",
"require": [
"source-map-support/register",
"ts-node/register"
],
"full-trace": true
}
}