-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.23 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
62
63
64
65
66
67
{
"name": "basic-spa",
"description": "Stable version of a basic SPA example with SCSS and ES6.",
"license": "MIT",
"version": "2.4.1",
"scripts": {
"prod": "webpack --env.NODE_ENV=production",
"dev": "webpack --env.NODE_ENV=development",
"start": "webpack-dev-server --env.NODE_ENV=development --hot --open",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest",
"test:e2e:cypress": "cypress run",
"test:e2e": "start-server-and-test start http-get://localhost:4000 test:e2e:cypress",
"lint": "npm run lint:scripts && npm run lint:styles",
"lint:scripts": "eslint \"./app/**/*.js\"",
"lint:styles": "stylelint \"./app/**/*.scss\"",
"publish": "git subtree push --prefix dist origin gh-pages"
},
"husky": {
"hooks": {}
},
"dependencies": {
"@babel/polyfill": "^7.4.3",
"bootstrap": "^4.3.1",
"codesandbox": "^2.1.6",
"cypress": "^3.2.0",
"filepond": "^4.4.7",
"js-beautify": "^1.10.0",
"js-event-bus": "^1.0.0",
"normalize-scss": "7.0.1",
"tesseract.js": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"@cypress/webpack-preprocessor": "^4.0.3",
"autoprefixer": "^9.5.0",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-plugin-cypress": "^2.2.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"jest": "^24.7.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"require.all": "^2.0.4",
"sass-loader": "^7.1.0",
"start-server-and-test": "^1.7.13",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-processor-html": "^1.0.0",
"stylelint-scss": "^3.5.4",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"repository": "https://github.com/CKGrafico/Frontend-Boilerplates#frontend-boilerplates",
"author": "https://github.com/CKGrafico/Frontend-Boilerplates#-contributors"
}