-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "@frontful/frontful-scaffold",
"version": "1.0.0",
"description": "Scaffold on top of Frontful infrastructure",
"private": true,
"frontful": {
"config": "./config/config.development.js"
},
"scripts": {
"build": "yarn test && frontful-environment build",
"clean": "frontful-tools clean",
"install": "frontful-tools install",
"start": "frontful-environment start",
"start:build": "yarn build && cross-env PORT=8000 node ./build/server",
"start:debug": "ndb frontful-environment start",
"test": "yarn test:eslint",
"test:eslint": "eslint --ext .jsx,.js --max-warnings 0 .",
"tools": "frontful-tools"
},
"repository": {
"type": "git",
"url": "https://github.com/frontful/frontful-scaffold.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"contributors": [
"Arturs Girons <[email protected]> (https://artursgirons.info/)"
],
"dependencies": {
"body-parser": "^1.17.2",
"express": "^4.15.2",
"frontful-config": "4.x",
"frontful-dao": "4.x",
"frontful-environment": "4.x",
"frontful-model": "4.x",
"frontful-resolver": "4.x",
"frontful-router": "4.x",
"frontful-style": "4.x",
"frontful-utils": "4.x",
"mobx": "^4.x",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"cross-env": "^5.0.1",
"frontful-tools": "4.x"
}
}