-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.9 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
61
{
"name": "www.contributary.community",
"version": "0.4.0",
"description": "A project for helping connect open source with the open source community.",
"license": "MIT",
"author": "Owen Buckley <[email protected]>",
"main": "src/index.js",
"type": "module",
"homepage": "https://github.com/ContributaryCommunity/www.contributary.community#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ContributaryCommunity/www.contributary.community.git"
},
"keywords": [
"GitHub",
"OSS",
"Community",
"Contributary"
],
"scripts": {
"clean": "rimraf ./public ./reports",
"build": "greenwood build",
"dev": "greenwood develop",
"lint:js": "eslint \"*.js\" \"./src/**/**/*.js\"",
"lint:css": "stylelint \"./src/**/*.css\"",
"lint": "ls-lint && yarn lint:js && yarn lint:css",
"serve": "yarn clean && yarn build && greenwood serve",
"start": "yarn develop",
"release": "yarn clean && echo \"todo\"",
"test": "wtr",
"test:tdd": "yarn test --watch"
},
"dependencies": {
"lit": "^2.0.0-rc.2",
"lit-redux-router": "~0.19.0",
"pwa-helpers": "^0.9.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@esm-bundle/chai": "^4.3.4",
"@greenwood/cli": "^0.30.0",
"@greenwood/plugin-google-analytics": "^0.30.0",
"@greenwood/plugin-import-raw": "^0.30.0",
"@greenwood/plugin-polyfills": "^0.30.0",
"@greenwood/plugin-postcss": "^0.30.0",
"@ls-lint/ls-lint": "^1.10.0",
"@web/test-runner": "^0.13.13",
"@web/test-runner-junit-reporter": "^0.4.4",
"@web/test-runner-puppeteer": "^0.10.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.1.0",
"postcss-nested": "^4.1.2",
"rimraf": "^2.6.2",
"sinon": "^11.1.1",
"stylelint": "^13.8.0",
"stylelint-a11y": "^1.2.3",
"stylelint-config-standard": "^20.0.0"
}
}