-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.34 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
{
"browserslist": [
"extends @wordpress/browserslist-config"
],
"dependencies:comment": "Production dependencies are managed by Snowpack. See `snowpack.deps.json`.",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@snowpack/plugin-babel": "^2.1.6",
"@snowpack/plugin-postcss": "^1.1.0",
"@snowpack/web-test-runner-plugin": "^0.2.2",
"@testing-library/react": "^12.1.2",
"@web/test-runner": "^0.13.20",
"@wordpress/browserslist-config": "^3.0.1",
"babel-plugin-htm": "^3.0.0",
"chai": "^4.3.4",
"postcss": "^8.2.4",
"postcss-cli": "^8.3.1",
"postcss-nested": "^5.0.3",
"postcss-preset-env": "^6.7.0",
"snowpack": "^3.0.11"
},
"__scripts:comment:bundle": "Removing build/index.js causes the source files to be loaded. See `get_serve_folder()`.",
"__scripts:comment:bundle2": "todo: could improve it by deleting everything except _snowpack - something like rm -rfvi !('build/_snowpack'). be careful not to delete anything above build/",
"scripts": {
"bundle": "npm run build && rm -f build/index.js",
"watch": "snowpack dev",
"build": "snowpack build",
"test": "web-test-runner \"source/**/*.test.js\"",
"test:watch": "npm run test -- --watch"
}
}