-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.93 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
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "appist",
"description": "A single platform to deliver your application continuously on AWS.",
"main": "web/src/main.ts",
"scripts": {
"build": "NODE_ENV=production npx webpack --mode=production --progress",
"format": "npx prettier --write 'web/**/*.{css,js,json,md,sass,scss,ts,tsx,svelte}'",
"start": "NODE_ENV=development npx webpack-dev-server --mode=development",
"test": "npx jest web/src",
"test:e2e": "npx nightwatch --env chrome,firefox"
},
"license": "UNLICENSED",
"repository": "github:appist/appist",
"dependencies": {
"bootstrap": "^4.3.1",
"jquery": "^3.4.1",
"popper.js": "^1.16.1",
"register-service-worker": "^1.6.2"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@intervolga/optimize-cssnano-plugin": "^1.0.6",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/svelte": "^1.9.1",
"@types/jest": "^25.1.1",
"@types/node": "^13.7.0",
"autoprefixer": "^9.7.4",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"chromedriver": "^79.0.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.4.2",
"favicons-webpack-plugin": "^2.1.0",
"file-loader": "^5.0.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"geckodriver": "^1.18.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.1.0",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^0.9.0",
"nightwatch": "^1.3.4",
"node-sass": "^4.13.1",
"postcss": "^7.0.23",
"postcss-load-config": "^2.1.0",
"postcss-loader": "^3.0.0",
"preload-webpack-plugin": "^3.0.0-beta.3",
"prettier": "^1.19.1",
"prettier-plugin-svelte": "^0.7.0",
"sass": "^1.25.0",
"svelte": "^3.18.1",
"svelte-jester": "^1.0.3",
"svelte-loader": "^2.13.6",
"svelte-preprocess": "^3.3.1",
"ts-jest": "^25.1.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"url-loader": "^3.0.0",
"webpack": "^4.41.0",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.2",
"webpack-manifest-plugin": "^2.2.0",
"workbox-webpack-plugin": "^4.3.1"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"pwa": {
"appleStatusBarStyle": "black-translucent",
"background": "#ffffff",
"developerName": "Appist",
"developerURL": "https://appist.io",
"display": "standalone",
"dir": "auto",
"lang": "en-US",
"orientation": "any",
"scope": "/",
"start_url": "./index.html",
"theme_color": "#000000"
}
}