-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.86 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
{
"name": "@novaway/tarte-a-la-praline",
"version": "0.24.4",
"description": "",
"main": "./dist/app.js",
"module": "src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist",
"translations"
],
"scripts": {
"start": "concurrently \"npm run build-dev\" \"npm run serve\"",
"test": "jest",
"clean": "rm -rf ./dist",
"build-dev": "webpack -d -w --mode development",
"build-prod": "webpack --mode production",
"serve": "serve ./dist -p 3000",
"cypress:open": "cypress open",
"changelog": "npx auto-changelog -p --output CHANGELOG.md --commit-limit false --template keepachangelog"
},
"repository": {
"type": "git",
"url": "https://github.com/novaway/tarte-a-la-praline"
},
"author": "Novaway",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/novaway/tarte-a-la-praline/issues"
},
"homepage": "https://github.com/novaway/tarte-a-la-praline#readme",
"dependencies": {
"@types/node": "^14.0.14",
"date-fns": "^2.17.0"
},
"devDependencies": {
"awesome-typescript-loader": "^5.2.1",
"concurrently": "^5.2.0",
"css-loader": "^3.4.2",
"css-modules-typescript-loader": "^2.0.1",
"cypress": "^6.1.0",
"cypress-localstorage-commands": "^1.4.1",
"html-webpack-plugin": "^5.6.0",
"jest": "^26.1.0",
"jest-localstorage-mock": "^2.4.0",
"mini-css-extract-plugin": "^1.2.1",
"prettier": "^1.19.1",
"sass": "^1.77.2",
"sass-loader": "^8.0.1",
"serve": "^11.3.2",
"style-loader": "^1.1.2",
"typescript": "^3.7.4",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"jest": {
"setupFiles": [
"jest-localstorage-mock"
]
}
}