-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 913 Bytes
/
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
{
"name": "drupack",
"description": "The default Wieni theme, for Drupal",
"version": "3.0.0",
"main": "index.js",
"author": "Wieni",
"license": "MIT",
"private": true,
"scripts": {
"build": "NODE_ENV=production magic build",
"start": "NODE_ENV=development magic start"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@wieni/magic": "^2.0.0-beta.17",
"@wieni/prettier-config": "^1.0.0",
"prettier": "^2.3.0"
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": "@wieni/prettier-config",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not IE 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}