-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.85 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
{
"name": "front-commerce-lite",
"version": "1.0.0",
"description": "Prototype your next eCommerce experiences using modern web technologies",
"scripts": {
"lint": "eslint --max-warnings=0 --fix \"src/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"watch:server": "NODE_ENV=development webpack --watch --config webpack.config.js --config-name server",
"dev:server": "NODE_ENV=development nodemon build/server.js",
"dev:client": "NODE_ENV=development webpack-dev-server --config webpack.config.js",
"start": "concurrently -k \"npm run watch:server\" \"npm run dev:server\" \"npm run dev:client\"",
"storybook": "start-storybook -p 9001 -s .storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/front-commerce/front-commerce-lite.git"
},
"keywords": [
"ecommerce",
"react",
"graphql",
"apollo",
"pwa",
"magento2"
],
"author": "Front-Commerce",
"license": "MIT",
"bugs": {
"url": "https://github.com/front-commerce/front-commerce-lite/issues"
},
"homepage": "https://github.com/front-commerce/front-commerce-lite#readme",
"dependencies": {
"@gramps/gramps": "^1.4.0",
"apollo-boost": "^0.1.10",
"apollo-link-http": "^1.5.4",
"apollo-server-express": "^1.3.6",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"fetch-cookie": "github:front-commerce/fetch-cookie#next",
"file-loader": "^1.1.11",
"graphql": "^0.13.2",
"graphql-tools": "^2.24.0",
"node-fetch": "^2.1.2",
"raw-loader": "^0.5.1",
"react": "^16.4.1",
"react-apollo": "^2.1.6",
"react-dom": "^16.4.1",
"react-modal": "^3.4.5",
"react-router-dom": "^4.3.1",
"recompose": "^0.27.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-react": "^7.0.0-beta.51",
"@babel/preset-stage-0": "^7.0.0-beta.51",
"@storybook/addon-actions": "^4.0.0-alpha.10",
"@storybook/react": "^4.0.0-alpha.10",
"babel-eslint": "^8.2.5",
"babel-loader": "^8.0.0-beta.4",
"babel-polyfill": "^6.26.0",
"concurrently": "^3.6.0",
"css-loader": "^0.28.11",
"eslint": "^5.0.1",
"eslint-config-react-app": "^2.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.6.1",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-react-app": "^3.0.0",
"graphql-tag": "^2.9.2",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.0",
"nodemon": "^1.17.5",
"prettier": "^1.13.6",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"webpack": "^4.12.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-node-externals": "^1.7.2"
}
}