-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"name": "math-parser",
"version": "1.0.1",
"description": "Simple NodeJS parser for math expressions",
"scripts": {
"build": "yarn build:server && yarn build:client",
"build:server": "yarn clean && tsc",
"build:client": "parcel build src/client/index.html --public-url /static --dist-dir dist/client",
"clean": "rm -rf dist",
"dev": "yarn build && yarn start",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"start": "node dist/index.js",
"test": "yarn build:server && npx mocha dist/tests/*.test.js"
},
"author": "Dmitry221060 <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/express": "^4.17.13",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.4",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"chai": "^4.2.0",
"eslint": "^7.8.1",
"eslint-plugin-mocha": "^8.0.0",
"mocha": "^9.2.2",
"parcel": "^2.4.0",
"typescript": "^4.0.2"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.1.0"
},
"engines": {
"node": ">=12.22.0"
}
}