forked from Linkvalue/MyLV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.15 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "cracra",
"version": "2.9.5",
"description": "CRA editor",
"keywords": [],
"private": true,
"homepage": "https://gitlab.com/LinkValue/Lab/CraCra#readme",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/LinkValue/Lab/CraCra.git"
},
"bugs": {
"url": "https://gitlab.com/LinkValue/Lab/CraCra/issues"
},
"author": "LinkValue",
"license": "MIT",
"main": "packages/api/index.js",
"workspaces": [
"./packages/*"
],
"scripts": {
"changelog": "conventional-changelog -c .conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"build": "webpack --env.production",
"dev:front": "APP_ENV=dev webpack-dev-server --hot",
"dev:front-optimized": "webpack -p --env.production --watch",
"dev:back": "APP_ENV=dev nodemon ./packages/api -e js,pug,css",
"dev:emails": "browser-sync start --proxy localhost:8001 --startPath /api/emails/render?template=holidaysRequest --files packages/api/plugins/mail/**/*.{css,pug}",
"lint": "eslint \"**/*.{js,jsx}\"",
"test": "BABEL_ENV=test APP_ENV=test jest",
"test:watch": "jest --watch",
"version": "yarn changelog && git add CHANGELOG.md",
"lint:fix": "eslint --fix \"**/*.{js,jsx,mjs}\"",
"heroku-postbuild": "echo Skip build on Heroku"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.2.0",
"@sentry/webpack-plugin": "^1.4.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"browser-sync": "^2.23.6",
"browsersync": "0.0.1-security",
"clean-webpack-plugin": "^0.1.19",
"conventional-changelog-cli": "^1.3.17",
"core-js": "^2.5.3",
"css-loader": "^1.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"nodemon": "^1.17.2",
"offline-plugin": "^5.0.5",
"style-loader": "^0.23.0",
"terser-webpack-plugin": "^1.1.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "^1.1.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.9",
"webpack-pwa-manifest": "^3.6.2"
},
"dependencies": {},
"jest": {
"testURL": "http://localhost",
"testPathIgnorePatterns": [
"packages/config/*",
"cache/*",
".yarn/*"
],
"automock": true,
"setupTestFrameworkScriptFile": "<rootDir>/test/jestSetup.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/"
],
"moduleNameMapper": {
"\\.(css|jpg|png|svg)$": "<rootDir>/test/emptyModule.js"
}
},
"engines": {
"node": "^10.14.1"
}
}