-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.1 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
{
"name": "theme-levis-hackathon",
"version": "1.2.1",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "fl-cli --start --port 9082 --theme --packageVariation=levis",
"build": "fl-cli --build --theme --config=config/webpack.config.prod.js --packageVariation=levis",
"publish": "fl-cli --publish --env=test",
"publish:local": "fl-cli --publish --env=local",
"publish:production": "fl-cli --publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foyerlive/transact-theme-kitchenwarehouse.git"
},
"keywords": [
"loblaws"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/foyerlive/transact-theme-loblaws/issues"
},
"homepage": "https://github.com/foyerlive/transact-theme-loblaws#readme",
"dependencies": {
"animate.css": "^3.7.0",
"application-base-react": "github:foyerlive/application-base-react",
"debug": "^3.1.0",
"fl-cli": "github:foyerlive/fl-cli",
"lodash": "^4.17.11",
"material-ui": "1.0.0-beta.36",
"moment": "^2.24.0",
"node-sass": "^4.12.0",
"npm": "^5.10.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-qr-svg": "^2.2.1",
"react-router": "^3.2.1",
"react-tappable": "^1.0.2"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
],
"plugins": [
"jsx-control-statements",
"syntax-async-functions",
"transform-regenerator"
],
"env": {
"development": {
"presets": [
"react-hmre"
]
}
}
},
"eslintConfig": {
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"env": {
"browser": true,
"node": true
},
"parser": "babel-eslint",
"rules": {
"quotes": [
2,
"single"
],
"strict": [
2,
"never"
],
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/react-in-jsx-scope": 2
},
"plugins": [
"react"
]
},
"devDependencies": {
"babel-loader": "^7.1.5",
"webpack-bundle-analyzer": "^2.13.1"
}
}