-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
83 lines (83 loc) · 2.72 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "fyndiq-ui-build",
"private": true,
"author": "Thibaut REMY <thibaut.remy@fyndiq.com>",
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna exec -- rimraf lib",
"prebuild": "npm run clean",
"build": "lerna exec --ignore fyndiq-ui-test -- babel src -d lib --ignore *.test.js",
"build:watch": "lerna exec --parallel --ignore fyndiq-ui-test -- babel src -d lib --ignore *.test.js -w",
"publish": "npm run build && lerna publish",
"dev": "npm run build:watch & lerna run storybook --stream --scope fyndiq-ui-test",
"lerna": "lerna",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint --ignore-path .gitignore .",
"lint:css": "stylelint \"packages/**/*.css\"",
"jest": "jest",
"sketch-prebuild": "webpack --config sketch-export/webpack.config.js",
"sketch-inject": "npm run sketch-prebuild && node ./sketch-export/inject.js",
"sketch-export": "npm run sketch-prebuild && node ./sketch-export/index.js",
"test": "jest --runInBand --coverage && codecov && npm run lint",
"ci-test": "jest --runInBand --coverage",
"ci-codecov": "codecov"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"canvg-fixed": "^1.0.0",
"codecov": "^3.0.0",
"connect": "^3.6.6",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.19.1",
"eslint-config-fyndiq": "^0.4.2",
"file-loader": "^1.1.11",
"html-sketchapp": "github:brainly/html-sketchapp#74f56a720ae4d6629aa303b6b1cdb9b8e5daa5d1",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.3",
"lerna": "^2.9.0",
"mock-local-storage": "^1.0.4",
"moment": "^2.21.0",
"prettier": "^1.11.1",
"puppeteer": "^1.2.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.1",
"serve-static": "^1.13.2"
},
"dependencies": {
"@storybook/addon-info": "^3.3.15",
"@storybook/react": "^3.3.15",
"css-loader": "^0.28.11",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.3",
"prop-types": "^15.6.1",
"react-router-dom": "^4.2.2",
"style-loader": "^0.19.0",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^18.2.0",
"webpack": "^3.11.0"
},
"jest": {
"setupFiles": [
"mock-local-storage",
"./setup-test.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
}
}
}