-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 2 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
{
"name": "codersrank-education-source",
"version": "0.9.12",
"scripts": {
"build:dev": "cross-env NODE_ENV=development node scripts/build",
"build:prod": "cross-env NODE_ENV=production node scripts/build",
"watch:dev": "cross-env NODE_ENV=development node scripts/watch",
"watch:prod": "cross-env NODE_ENV=production node scripts/watch",
"dev": "npm run build:dev && concurrently --kill-others \"npm run serve\" \"npm run watch:dev\" ",
"serve": "serve -l tcp://0.0.0.0:5000",
"prettier": "prettier \"**/*.+(js|json|scss|css|less|ts|svelte|jsx)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"lint": "eslint --ext .js,.jsx .",
"validate": "npm-run-all --parallel check-format lint",
"release": "npm run validate && node ./scripts/release",
"test": "npm run validate && npm run build:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codersrank-org/education-widget.git"
},
"author": "CodersRank Ltd.",
"license": "MIT",
"bugs": {
"url": "https://github.com/codersrank-org/education-widget/issues"
},
"homepage": "https://github.com/codersrank-org/education-widget#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-replace": "^2.3.3",
"autoprefixer": "^10.0.1",
"clean-css": "^4.2.3",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"exec-sh": "^0.3.4",
"husky": "^4.3.0",
"inquirer": "^7.3.3",
"lint-staged": "^10.4.2",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.1.2",
"prettier": "^2.1.2",
"puppeteer": "^5.5.0",
"rollup": "^2.32.0",
"serve": "^11.3.2",
"terser": "^5.3.6"
}
}