-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.64 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.64 KB
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
{
"name": "youanno",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:letscode-io/youanno.git",
"author": "Let's Code <https://github.com/letscode-io>",
"license": "MIT",
"scripts": {
"dev": "rollup -c -w",
"build": "NODE_ENV=production rollup -c",
"test": "jest src",
"test:watch": "yarn test --watch",
"lint-fix": "prettier --write src/",
"lint": "prettier --check src/"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@rollup/plugin-html": "^0.2.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/svelte": "^3.0.0",
"babel-jest": "^26.1.0",
"dotenv": "^8.2.0",
"jest": "^26.1.0",
"postcss-load-config": "2.1.0",
"prettier": "2.0.5",
"rollup": "^2.23.0",
"rollup-plugin-postcss": "^3.1.3",
"rollup-plugin-svelte": "^5.2.3",
"rollup-plugin-terser": "^6.1.0",
"svelte": "^3.24.0",
"svelte-jester": "^1.0.6",
"svelte-preprocess": "4.0.8",
"tailwindcss": "^1.6.0"
},
"browserslist": [
"last 2 Chrome versions"
],
"babel": {
"plugins": [
"@babel/plugin-transform-runtime"
],
"presets": [
"@babel/env"
]
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.svelte$": "svelte-jester"
},
"moduleFileExtensions": [
"js",
"svelte"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
],
"setupFiles": [
"<rootDir>/testSetup.js"
]
}
}