-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
85 lines (85 loc) · 2.92 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
{
"name": "accounts-ui",
"version": "1.0.0",
"description": "Zesty.io account management application",
"repository": {
"git": "https://github.com/zesty-io/accounts-ui"
},
"main": "webpack.config.js",
"scripts": {
"ci:test:setup": "./ci/scripts/pull_ci_secrets.sh false && ./ci/scripts/update_etc_hosts.sh",
"ci": "./node_modules/.bin/start-server-and-test start http://accounts.dev.zesty.io:3100 test",
"ci:pull:screenshots": "./ci/scripts/pull_ci_screenshots.sh",
"precommit": "pretty-quick --staged",
"serve": "serve build/ -l 9001 --single",
"serve-ssl": "cross-env ./node_modules/.bin/http-server ./build -c-1 --ssl --cert etc/cert.pem --key etc/key.pem --port 9001 --proxy http://localhost:9001?",
"prestart": "npm install",
"start": "npm run build:dev && ./node_modules/.bin/serve build/ -l 3100 --single",
"build:local": "cross-env NODE_ENV=local node bin/build",
"build:dev": "cross-env NODE_ENV=development node bin/build",
"build:stage": "cross-env NODE_ENV=stage node bin/build",
"build:prod": "cross-env NODE_ENV=production node bin/build",
"test:open": "./node_modules/.bin/cypress open",
"test": "./node_modules/.bin/cypress run --browser chrome",
"test:setup": "./ci/scripts/pull_ci_secrets.sh && ./ci/scripts/update_etc_hosts.sh",
"release:stage": "npm test && zesty deploy stage .",
"release:prod": "npm test && zesty deploy prod .",
"cleanup": "echo 'All done'."
},
"author": "Zesty.io<developers@zesty.io>",
"contributors": [
"Grant Glidewell<grant.glidewell@zesty.io>",
"Stuart Runyan<stuart@zesty.io>",
"David Naimi<david.naimi@zesty.io>"
],
"license": "All Rights Reserved",
"dependencies": {
"@zesty-io/core": "0.4.14",
"classnames": "2.2.6",
"core-js": "3.2.1",
"ismounted": "^0.1.8",
"js-cookie": "^2.2.1",
"lodash.debounce": "4.0.8",
"qs": "6.7.0",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-redux": "7.1.0",
"react-router": "5.0.1",
"react-router-dom": "5.0.1",
"redux": "4.0.4",
"redux-thunk": "2.3.0",
"whatwg-fetch": "3.0.0"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"babel-cli": "6.26.0",
"babel-loader": "8.0.6",
"cross-env": "^7.0.2",
"css-loader": "2.1.0",
"cypress": "3.4.1",
"dotenv": "^10.0.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"http-server": "^0.12.3",
"husky": "3.0.3",
"less": "3.9.0",
"less-loader": "5.0.0",
"ncp": "^2.0.0",
"prettier": "1.18.2",
"pretty-quick": "1.11.1",
"redux-logger": "3.0.6",
"serve": "11.1.0",
"start-server-and-test": "^1.14.0",
"webpack": "4.39.1",
"webpack-cli": "3.3.6"
},
"prettier": {
"jsxBracketSameLine": true,
"singleQuote": true,
"tabWidth": 2,
"semi": false
},
"false": {}
}