This repository was archived by the owner on Oct 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.09 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.09 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"private": true,
"name": "maji-project-template",
"version": "0.0.1",
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"start": "cross-env LIVERELOAD=true node script/dev-server.js",
"test": "yarn lint && yarn test:unit && yarn test:e2e --env ci",
"test:unit": "cross-env NODE_ENV=test karma start config/karma.js --single-run",
"test:watch": "cross-env NODE_ENV=test karma start config/karma.js --watch",
"test:e2e": "cross-env NODE_ENV=test SERVER_PORT=9091 node script/test-e2e.js",
"prettier": "prettier '{,!(node_modules|cordova)/**/}*.js'",
"lint": "yarn run eslint && yarn run stylelint",
"eslint": "eslint src/ test/",
"stylelint": "stylelint 'src/**/*.scss'",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
],
"*.scss": [
"stylelint"
]
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"fastclick": "^1.0.6",
"history": "^4.6.3",
"maji": "^3.1.1",
"preact": "^8.1.0",
"preact-redux": "^2.0.2",
"preact-router": "^2.5.2",
"raven-js": "^3.17.0",
"redux": "^3.7.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"autoprefixer": "^7.1.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^8.0.0",
"chai": "^3.5.0",
"chromedriver": "^2.35.0",
"clean-webpack-plugin": "^0.1.16",
"cordova": "^8.0.0",
"cross-env": "^5.2.0",
"cross-spawn": "^6.0.4",
"css-loader": "^0.28.1",
"eslint": "^4.3.0",
"eslint-plugin-compat": "^1.0.4",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"json-loader": "^0.5.7",
"karma": "^4.0.0",
"karma-chai": "^0.1.0",
"karma-chai-plugins": "^0.9.0",
"karma-chrome-launcher": "^2.2.0",
"karma-junit-reporter": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.0",
"karma-webpack": "^4.0.0-beta.0",
"lint-staged": "^8.1.5",
"mini-css-extract-plugin": "^0.6.0",
"mocha": "^6.0.0",
"nightwatch": "^1.0.0",
"node-sass": "^4.5.3",
"postcss-loader": "^2.1.3",
"preact-render-spy": "^1.0.0-rc.8",
"prettier": "^1.6.1",
"sass-loader": "^6.0.7",
"selenium-server-standalone-jar": "^3.4.0",
"source-map-loader": "^0.2.1",
"style-loader": "^0.20.3",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-no-unsupported-browser-features": "^1.0.0",
"svg-sprite-loader": "^3.7.3",
"webpack": "^4.5.0",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.1.2",
"webpack-dev-server": "^3.1.1",
"webpack-hot-middleware": "^2.21.2",
"yaml-loader": "^0.4.0"
},
"engines": {
"node": ">=8"
}
}