-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.77 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
{
"name": "apprentice-project-starter",
"version": "1.0.0",
"description": "A basic starter repository for apprentice side projects that includes Jest, Sass, and Webpack.",
"scripts": {
"predev": "npm run checkNodeVersion",
"dev": "webpack serve --mode development",
"build": "webpack build --mode development",
"build:dev": "webpack build --mode development",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint ./ --ignore-path .gitignore",
"lint:css": "stylelint src/scss/**/*.scss",
"checkNodeVersion": "check-node-version --package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sparkbox/apprentice-project-starter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sparkbox/apprentice-project-starter/issues"
},
"homepage": "https://github.com/sparkbox/apprentice-project-starter#readme",
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"babel-jest": "^27.5.1",
"check-node-version": "^4.2.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.6.0",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"stylelint": "^14.5.3",
"stylelint-config-recommended-scss": "^5.0.2",
"stylelint-config-standard": "^25.0.0",
"webpack": "^5.82.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}