-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.85 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
{
"name": "@graffiticode/graffiticode-L141",
"version": "0.0.1",
"description": "Compiler as a service.",
"author": "ARTCOMPILER",
"license": "MIT",
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/graffiticode/graffiticode-L141"
},
"type": "module",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@pollyjs/adapter-node-http": "^5.1.0",
"@pollyjs/core": "^5.1.0",
"@pollyjs/persister-fs": "^5.0.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"clean-webpack-plugin": "*",
"css-loader": "^5.2.4",
"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",
"svg-inline-loader": "^0.8.2",
"webpack": "^5.24.1",
"webpack-cli": "^4.5.0"
},
"scripts": {
"build": "npx webpack --config config/webpack.config.js --mode production; cp src/style.css dist; cp src/lexicon.js dist; cp src/*.svg dist; cp src/*.png dist",
"build:dev": "npx webpack --config config/webpack.config.js --mode development; cp src/style.css dist; cp src/lexicon.js dist; cp src/*.svg 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",
"autoprefixer": "^10.4.0",
"d3": "^6.7.0",
"express": "^4.17.1",
"hashids": "^2.2.8",
"jest": "^27.2.5",
"morgan": "^1.10.0",
"postcss": "^8.4.5",
"postcss-js": "^3.0.3",
"react": "^17.0.2",
"request": "^2.88.2",
"supertest": "^6.1.3",
"tailwindcss": "^2.2.19"
}
}