-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 973 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 973 Bytes
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
{
"name": "norma",
"version": "0.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch --silent",
"start": "webpack-dev-server --mode development --config ./webpack.config.dev.js",
"build": "rm -rf dist && webpack --config ./webpack.config.build.js",
"lint": "tslint --project tsconfig.json --config tslint.json",
"lint:fix": "tslint --project tsconfig.json --config tslint.json --fix"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.11",
"dts-bundle-webpack": "^1.0.2",
"jest": "^24.8.0",
"lodash": "^4.17.15",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"dependencies": {
"@babel/polyfill": "^7.6.0"
}
}