-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.47 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.47 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
{
"private": true,
"name": "barams",
"description": "Chrome extension for managing your url parameters",
"version": "0.2.0",
"license": "MIT",
"scripts": {
"start": "parcel src/index.html",
"dev": "cross-env NODE_ENV=production parcel watch src/index.html -d dist --public-url .",
"clean": "rimraf .cache/ dist/",
"test": "run-p -r start cypress:run",
"build": "run-s clean parcel:build",
"parcel:build": "parcel build src/index.html --no-source-maps --experimental-scope-hoisting --public-url . --detailed-report",
"cypress": "run-p -r start cypress:open",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"cross-env": "^7.0.2",
"cypress": "^4.1.0",
"eslint": "^6.8.0",
"eslint-config-synacor": "^3.0.5",
"eslint-plugin-better-styled-components": "^1.1.2",
"eslint-plugin-cypress": "^2.10.3",
"husky": "^4.2.3",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.2"
},
"dependencies": {
"history": "^4.10.1",
"preact": "^10.3.4",
"preact-compat": "^3.19.0",
"preact-render-to-string": "^5.1.4",
"preact-router": "^3.2.1",
"styled-components": "^5.0.1",
"styled-icons": "^10.2.1",
"uuid": "^7.0.2"
},
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat"
},
"husky": {
"hooks": {
"pre-commit": "run-s lint test"
}
}
}