-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.74 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
{
"name": "visual-regresion-test",
"version": "1.0.0",
"description": "React App",
"main": "index.js",
"license" : "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development parcel ./public/index.html -p 3000 --open",
"deploy": "yarn build && firebase deploy",
"build": "cross-env NODE_ENV=production parcel build ./public/index.html -d build --public-url ./",
"format:js": "prettier --write './src/**/*.{js,jsx,json,md}'",
"format:style": "prettier-stylelint --write './src/**/*.js'",
"format": "npm run format:js && npm run format:style",
"lint:style": "stylelint './src/**/*.js' --formatter verbose; exit 0",
"lint:js": "eslint './src/**/*.{js,jsx,json,md}'; exit 0",
"lint": "npm run lint:style && npm run lint:js",
"vrt": "node ./scripts/visual-regresion-tests/index.js",
"test": "jest; exit 0",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"Parcel",
"React"
],
"author": "papaponmx",
"dependencies": {
"babel-runtime": "^6.26.0",
"chalk": "^2.4.1",
"colors": "^1.3.1",
"gh-pages": "^1.2.0",
"pixelmatch": "^4.0.2",
"pngjs": "^3.3.3",
"prop-types": "^15.6.2",
"raf": "^3.4.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"styled-components": "^3.3.3"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-react": "^7.9.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.1.0",
"parcel-bundler": "^1.9.2",
"prettier": "^1.13.5",
"prettier-stylelint": "^0.4.2",
"puppeteer": "^1.6.1",
"react-test-renderer": "^16.4.1",
"signale": "^1.2.1",
"stylelint": "^9.3.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.3.1",
"stylelint-scss": "^3.1.3"
},
"jest": {
"setupFiles": [
"./config/jestSetup.js"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"^.+\\.(css|scss|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "identity-obj-proxy"
}
}
}