-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
{
"name": "marcel-plugin",
"version": "1.0.0",
"description": "Base utility for making a marcel plugin",
"main": "dist/index.js",
"repository": "https://github.com/allez-chauffe/marcel/tree/master/node-packages/marcel-plugin",
"author": "Valentin Cocaud",
"license": "Apache-2.0",
"scripts": {
"build": "NODE_ENV=production webpack",
"lint": "eslint src"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-preset-react-app": "^9.0.0",
"eslint": "^6.5.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.4"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "eslint:recommended",
"env": {
"browser": true,
"es6": true
}
},
"babel": {
"presets": [
"react-app",
[
"@babel/preset-env",
{
"targets": {
"browsers": [
">0.2%",
"not dead",
"not op_mini all"
]
}
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}