-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.34 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
{
"repository": {
"name": "ironcore-getting-started",
"version": "0.0.1",
"private": false
},
"license": "MIT",
"scripts": {
"lint": "eslint ./app",
"start": "webpack serve --config webpack.config.js --env stage=tutorial",
"complete": "webpack serve --config webpack.config.js --env stage=complete",
"testTutorial": "node ./nightwatch/scripts/local.runner.js -c nightwatch/conf/tutorial.conf.js -e chrome,firefox,edge,ie,safari,galaxyS9,iPhoneX",
"testComplete": "node ./nightwatch/scripts/local.runner.js -c nightwatch/conf/complete.conf.js -e chrome,firefox,edge,ie,safari,galaxyS9,iPhoneX"
},
"dependencies": {
"@ironcorelabs/ironweb": "4.2.5",
"babel-polyfill": "^6.26.0",
"es6-promise": "4.2.8",
"jsonwebtoken": "8.5.1",
"whatwg-fetch": "3.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-loader": "^9.1.3",
"browserstack-local": "^1.4.8",
"chromedriver": "^78.0.1",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"nightwatch": "^1.5.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"babel": {},
"prettier": {
"printWidth": 160,
"tabWidth": 4,
"trailingComma": "es5",
"bracketSpacing": false,
"jsxBracketSameLine": true,
"arrowParens": "always"
}
}