-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.9 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.9 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
{
"name": "@template/core",
"version": "2.0.0-rc.79",
"description": "",
"scripts": {
"coverage": "cross-env NODE_ENV=test nyc mocha",
"cucumber": "cross-env NIGHTWATCH_ENV=chrome cucumber-js tests/cucumber/features/**/*.feature --require cucumber.conf.js --require tests/cucumber/step-definitions --format @cucumber/pretty-formatter --format json:.reports/cucumber/report.json",
"e2e": "nightwatch",
"format": "prettier --check \"{src,tests}/**\" --ignore-unknown",
"lint": "eslint \"{src,tests}/**/*.{html,js,json,jsx,ts,tsx,gql,graphql}\"",
"reinstall": "npm run remove && npm install",
"remove": "rimraf node_modules package-lock.json",
"update": "ncu -t minor -u && npm install && ncu",
"build": "cross-env NODE_ENV=production webpack",
"start": "npm run serve -- --open",
"serve": "cross-env NODE_ENV=development webpack serve --devtool=source-map --no-hot",
"preview": "vite preview",
"test": "cross-env NODE_ENV=test mocha",
"prepare:husky": "husky install",
"commit-msg": "commitlint",
"pre-commit": "lint-staged",
"unused": "ts-prune -e src",
":prepare": "rimraf .husky && husky install && husky add .husky/commit-msg \"npx commitlint --edit $1\" && husky add .husky/pre-commit \"npm run lint\" && husky add .husky/pre-commit \"npm run format\" && husky add .husky/pre-commit \"npm run ts-prune\""
},
"dependencies": {
"@leanup/form": "2.0.0-rc.79",
"@leanup/lib": "2.0.0-rc.79",
"@leanup/openapi-demo": "2.0.0-rc.78",
"navigo": "8.11.1",
"rxjs": "7.5.7"
},
"devDependencies": {
"@leanup/cli": "2.0.0-rc.73",
"@leanup/git-hooks": "2.0.0-rc.79",
"@leanup/stack": "2.0.0-rc.79",
"@leanup/stack-webpack": "2.0.0-rc.79",
"chromedriver": "104.0.0",
"npm-check-updates": "16.3.18",
"postcss-windicss": "1.0.0",
"rimraf": "3.0.2",
"selenium-server": "3.141.59",
"typescript": "4.8.4"
}
}