-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.39 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
{
"name": "investing",
"version": "0.0.1",
"engines": {
"node": "~16"
},
"scripts": {
"build": "snowpack build && npm run build-autoprefixer && cp -ru public build",
"build-autoprefixer": "postcss -u autoprefixer --no-map --replace public/css/*.css",
"watch": "snowpack dev",
"gen-icon-sprite": "npx svgo --config ui/assets/icons-svgo.json -f ui/assets/icons && npx svg-sprite --config ui/assets/icons-svg-sprite.json ui/assets/icons/*.svg",
"test": "web-test-runner {i18n,ui}/**/*.test.ts"
},
"dependencies": {
"bootstrap-scss": "^5.0.2",
"svelte": "^3.41.0"
},
"devDependencies": {
"@snowpack/plugin-run-script": "^2.3.0",
"@snowpack/plugin-svelte": "^3.7.0",
"@snowpack/plugin-typescript": "^1.2.1",
"@snowpack/web-test-runner-plugin": "^0.2.2",
"@testing-library/svelte": "^3.0.3",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/sinon": "^10.0.1",
"@types/sinon-chai": "^3.2.5",
"@web/test-runner": "^0.13.15",
"autoprefixer": "^10.3.1",
"chai": "^4.3.4",
"http2-proxy": "^5.0.53",
"postcss-cli": "^8.3.1",
"sass": "^1.32.13",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"snowpack": "^3.8.3",
"svelte-check": "^2.2.3",
"svelte-preprocess": "^4.7.4",
"typescript": "^4.3.5"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not IE 9-11"
]
}