This repository has been archived by the owner on Jun 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "canvas",
"version": "1.0.0",
"description": "canvas experiments",
"main": "webpack.config.js",
"scripts": {
"coverage": "jest --coverage",
"lint": "eslint -c .eslintrc.json ./src",
"start": "webpack --mode=development --config webpack.config.js",
"build": "webpack --mode=production --config webpack.config.js",
"test": "jest --verbose false",
"watch": "jest --watch --verbose false"
},
"keywords": [
"canvas"
],
"author": "Matthew Page",
"license": "MIT",
"jest": {
"verbose": true
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"copy-webpack-plugin": "^4.5.4",
"css-loader": "^1.0.0",
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.5.0",
"merge": ">=1.2.1",
"mini-css-extract-plugin": "^0.4.4",
"prettier": "^1.13.5",
"regenerator-runtime": "^0.12.1",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.7"
}
}