-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.64 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
{
"name": "L138",
"version": "0.0.1",
"description": "Compiler as a service.",
"author": "ARTCOMPILER",
"license": "MIT",
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/artcompiler/L138"
},
"type": "module",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@pollyjs/adapter-node-http": "^5.1.1",
"@pollyjs/core": "^5.1.1",
"@pollyjs/persister-fs": "^5.1.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.7",
"enzyme": "^3.11.0",
"https-browserify": "^1.0.0",
"json-loader": "^0.5.7",
"sinon": "^10.0.0",
"stream-http": "^3.2.0",
"style-loader": "^2.0.0",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"scripts": {
"build": "npx webpack --config config/webpack.config.js --mode production; cp src/style.css dist; cp src/lexicon.js dist",
"build:dev": "npx webpack --config config/webpack.config.js --mode development; cp src/style.css dist; cp src/lexicon.js dist",
"start": "node app.js",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest --config config/jest.config.js",
"watch": "nodemon -w src -w app.js -w package.json --exec make"
},
"dependencies": {
"@graffiticode/basis": "^1.0.11",
"bent": "^7.3.12",
"d3": "^6.7.0",
"express": "^4.17.1",
"hashids": "^2.2.8",
"jest": "^26.6.3",
"morgan": "^1.10.0",
"react": "^17.0.2",
"request": "^2.88.2",
"supertest": "^6.1.6"
}
}