-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.68 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
{
"name": "mars-rover",
"version": "1.0.0",
"description": "Rover game built in svelte",
"license": "MIT",
"private": false,
"main": "./src/main.ts",
"scripts": {
"start": "sirv public",
"test": "jest",
"lint": "eslint --cache --ext .js src/",
"build": "rollup -c",
"dev": "rollup -c -w"
},
"browserslist": [
"last 2 chrome versions"
],
"resolutions": {
"terser": "5.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-image": "^2.0.6",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^8.1.0",
"@testing-library/svelte": "^3.0.0",
"@tsconfig/svelte": "^1.0.10",
"autoprefixer": "^9",
"babel-jest": "^26.6.3",
"eslint-plugin-svelte3": "^2.7.3",
"jest": "^26.6.3",
"postcss": "^8.2.1",
"postcss-load-config": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.2",
"prettier-plugin-svelte": "^1.4.0",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"sirv-cli": "^1.0.10",
"svelte": "^3.31.0",
"svelte-check": "^1.1.23",
"svelte-image": "^0.2.9",
"svelte-jest": "^0.3.1",
"svelte-jester": "^1.3.0",
"svelte-preprocess": "^4.6.1",
"tailwindcss": "^2.0.1-compat",
"tailwindcss-font-inter": "^2.0.0",
"ts-jest": "^26.4.4",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
}
}